$(document).ready(function(){
	var amount=4;
	Bum_img(1);
	var nav=[];

	$('.splash_menu .nav1 a').mouseenter (function() {
		nav1 = $(this);
		nav1.find('.text_hover').stop().animate({top:'-130'},0);
		nav1.find('.text').stop().animate({top:'380'},200, function(){
			nav1.find('.text_hover').stop().animate({top:'190'},300, function(){
				nav1.find('.text_hover').animate({top:'120'},300);
			});
		});
	}).mouseleave (function() {
		nav1.find('.text').stop().animate({top:'-130'},0);
		nav1.find('.text_hover').stop().animate({top:'380'},200, function(){
			nav1.find('.text').stop().animate({top:'190'},300, function(){
				nav1.find('.text').animate({top:'120'},300);
			});
		});
	});
	$('.splash_menu .nav2 a').mouseenter (function() {
		nav2 = $(this);
		nav2.find('.text_hover').stop().animate({top:'-130'},0);
		nav2.find('.text').stop().animate({top:'380'},200, function(){
			nav2.find('.text_hover').stop().animate({top:'190'},300, function(){
				nav2.find('.text_hover').animate({top:'120'},300);
			});
		});
	}).mouseleave (function() {
		nav2.find('.text').stop().animate({top:'-130'},0);
		nav2.find('.text_hover').stop().animate({top:'380'},200, function(){
			nav2.find('.text').stop().animate({top:'190'},300, function(){
				nav2.find('.text').animate({top:'120'},300);
			});
		});
	});
	$('.splash_menu .nav3 a').mouseenter (function() {
		nav3 = $(this);
		nav3.find('.text_hover').stop().animate({top:'-130'},0);
		nav3.find('.text').stop().animate({top:'380'},200, function(){
			nav3.find('.text_hover').stop().animate({top:'190'},300, function(){
				nav3.find('.text_hover').animate({top:'120'},300);
			});
		});
	}).mouseleave (function() {
		nav3.find('.text').stop().animate({top:'-130'},0);
		nav3.find('.text_hover').stop().animate({top:'380'},200, function(){
			nav3.find('.text').stop().animate({top:'190'},300, function(){
				nav3.find('.text').animate({top:'120'},300);
			});
		});
	});
	$('.splash_menu .nav4 a').mouseenter (function() {
		nav4 = $(this);
		nav4.find('.text_hover').stop().animate({top:'-130'},0);
		nav4.find('.text').stop().animate({top:'380'},200, function(){
			nav4.find('.text_hover').stop().animate({top:'190'},300, function(){
				nav4.find('.text_hover').animate({top:'120'},300);
			});
		});
	}).mouseleave (function() {
		nav4.find('.text').stop().animate({top:'-130'},0);
		nav4.find('.text_hover').stop().animate({top:'380'},200, function(){
			nav4.find('.text').stop().animate({top:'190'},300, function(){
				nav4.find('.text').animate({top:'120'},300);
			});
		});
	});

	function Bum_img(i){
		if (i<=amount) {
			$('.splash_menu .nav'+i+' img').animate({top:'0'},400, function(){Bum_img(i+1)});
			Down_text(i);
		}
	}
	function Down_text(i){
		if (i<=amount) {
			$('.splash_menu .nav'+i+' .text').stop().animate({top:'190'},500, function(){
					Down_text(i+1);
					Up_text(i);
			});
		}
	}
	function Up_text(i){
			$('.splash_menu .nav'+i+' .text').animate({top:'120'},400);
	}


});

