		$(document).ready(function(){
			var nav= $("ul.nav > li");
			$("div",nav).hide();
			$(nav).hover(
				function(){
					$(this).children("div").fadeIn(240);
				},
				function(){
					$(this).children("div").fadeOut(230);					
				}
			);

		});
		
		
		
		$(document).ready(function(){
			var popup= $("ul.popup > li");
			$("div",popup).hide();
			$(popup).hover(
				function(){
					$(this).children("div").fadeIn(100);
				},
				function(){
					$(this).children("div").fadeOut(100);					
				}
			);

		});
	
		
		$(document).ready(function() {
			setTimeout("animation()",300);
		});
		
		function animation(){

			
			$(".logo-pic").delay(800).animate({top: '0px' }, {queue:false, duration:1200, easing:'easeOutExpo'});
			
			
			$(".ease").animate({top: '0px' }, {queue:false, duration:1200, easing:'easeOutExpo'});
			

			
			$(".move").animate({right: '10px' }, {queue:false, duration:4000, easing:'easeOutBounce'});
				
		}
		
		
		
		function goToByScroll(id){
$('html,body').animate({scrollTop: $("#"+id).offset().top},600);
		}
		
		
		$(document).ready(function(){	
	$('.1').css("display", "none").delay(800).fadeIn(1400);
	$('.2-').css("display", "none").fadeIn(1600);
	$('.3').css("display", "none").delay(800).fadeIn(800);
});


