$(document).ready(function() {
	//Over del menu del pie
	$('#menuInferior a').hover(
		function () {
			$(this).animate({color:'#C90019'}, {queue:false,duration:500});
		}, function () {
			$(this).animate({color:'#000000'}, {queue:false,duration:500});
		}
	);
	//Over del menu de coleccion (izquierda)
	$('.botonColeccion').hover(
		function () {
			$(this).find(".botonColeccion_texto").animate({paddingLeft:"15px"}, {queue:false,duration:500});
		}, function () {
			$(this).find(".botonColeccion_texto").animate({paddingLeft:"0px"}, {queue:false,duration:500});
		}
	);
});
/*scroll la ventana a 0*/
//setTimeout("window.scrollTo(0,0)",1500);
