$(function(){  
	var left = Math.floor(($(window).width() - $("#container_index").width()) / 2);  
	var top  = Math.floor(($(window).height() - $("#container_index").height()) / 2);  
		$("#container_index")  
		.css({
		"opacity": 0  
	})  
	.animate({opacity: "1"},{queue: true, duration: 1000, easing: "linear", complete: function(){}});  
});

$(function(){ 
	$("#logo")  
		.css({
		"opacity": 0  
	})  
	.animate({opacity: "1"},{queue: true, duration: 3000, easing: "linear", complete: function(){}});  
}); 

$(function(){  
	var left = Math.floor(($(window).width() - $("#white_box").width()) / 2);  
	var top  = Math.floor(($(window).height() - $("#white_box").height()) / 2);  
		$("#white_box")  
		.css({
		"opacity": 0  
	})  
	.animate({opacity: "0.8"},{queue: true, duration: 1000, easing: "linear", complete: function(){}});  
}); 

$(document).ready(function(){
	$(function(){
		$("#all").mouseover(
			function(){
				$(this).stop();
				$(this).fadeTo("slow", 1.0);
		});
		$("#all").mouseout(
			function(){
				$(this).stop();
				$(this).fadeTo("slow", 0.8);
		});
	});
});

$(document).ready(function(){
	$(function(){
		$("#white_box").mouseover(
			function(){
				$(this).stop();
				$(this).fadeTo("slow", 1.0);
		});
		$("#white_box").mouseout(
			function(){
				$(this).stop();
				$(this).fadeTo("slow", 0.6);
		});
	});
});

$(document).ready(function(){
	$(function(){
		$(".fade").mouseover(
			function(){
				$(this).stop();
				$(this).fadeTo("fast", 0);
		});
		$(".fade").mouseout(
			function(){
				$(this).stop();
				$(this).fadeTo("slow", 1);
		});
	});
});

$(document).ready(function() {
	$("img[@src$=png]").pngfix();
});
