
		$(document).ready(function(){
			
			$(".img_header .first").hide();
			$(".img_header .second").hide();
			
			window.onload = function() { 
				$(".img_header .first").fadeIn(800); 
				setTimeout(function() {$(".img_header .second").fadeIn(1000);},800);
			};
			
		 });
