var time = 150;
$(document).ready(function(){
	$('ul.menu-inicio li').css({'marginTop' : '200px'});
	$('ul.menu-inicio li').animate({ 'marginTop' : '200px' }, 1000, function(){
		$('li.m1').animate({'marginTop' : '0'}, 150	, function(){
			$('.cargando').fadeOut('fast');
			$('li.m2').animate({'marginTop' : '0'}, 150	, function(){
				$('li.m3').animate({'marginTop' : '0'}, 150	, function(){
					$('li.m4').animate({'marginTop' : '0'}, 150	, function(){
						$('li.m5').animate({'marginTop' : '0'}, 150	, function(){
							$('li.m6').animate({'marginTop' : '0'}, 150)
						})
					})
				})
			})
		});
	})
	
	//EFECTOS MENU DEL CENTRO
	$('.tipo').hover(
		function(){ $(this).find('span').stop(true).animate({ 'marginTop': "-10px" },{ duration: time }); },
		function(){ $(this).find('span').stop(true).animate({ 'marginTop': "0px" },{ duration: time }); }
	);
	$('.m-inf').css({ color: '#fff' }).hover(//EFECTOS MENU DEL CENTRO
		function(){ $(this).stop(true).animate({ color: '#1699D1' },{ duration: time }); },
		function(){ $(this).stop(true).animate({ color: '#fff' },{ duration: time }); }
	);

	$('.menu-sup').hover(//EFECTOS MENU DEL CENTRO
		function(){ $(this).stop(true).animate({ color: '#F7B134' },{ duration: time }); },
		function(){ $(this).stop(true).animate({ color: '#fff' },{ duration: time }); }
	);
})
