// design by http://www.drakov.info
$(document).ready(function(){

	//Splash logo
	$('div#splash img').fadeIn(1500, function(){
		$('#index_anim').slideDown(1500, function(){
			$('#lang_menu').fadeIn('slow');
		});
	});

	//Show logo and top navigation
	$('div#logo').slideDown('slow', function(){
		$('div#top_nav').fadeIn('slow');
	});

	//Top navigation mouseover FX
	$('div#top_nav a')
	.mouseover(function(){
		$(this).fadeTo(350, 0.5);
	})
	.mouseout(function(){
		$(this).fadeTo(350, 1);
	});

	//Show tab content
	$('div.page_tab a').click(function(){

		var tab = $(this).attr('rel');
		$('div#page_content div.page_item:visible').fadeOut('slow', function(){
			$('div.'+tab).fadeIn('slow');
		});
	});

	//Gallery img show
	$('img.gallery')
	.click(function(){
		var url = $(this).attr('src');
		$('img.projector').attr('src', url);
		$('div#projector').slideDown('fast');
	})
	.mouseover(function(){
		$(this).css('cursor', 'pointer');
		$(this).css('border', '2px #333 solid');
	})
	.mouseout(function(){
		$(this).css('border', '2px #912746 solid');
	});

	//Gallery close
	$('div#projector span')
	.click(function(){
		$('div#projector').slideUp('fast');
	});
	
});
