// JavaScript Document
	
$(function(){
	$('#inicio')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "0 -26px"} )
			else
				$(this).stop().animate({backgroundPosition:"(0 -26px)"}, {duration:200})
		})
		.mouseout(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "0 0"} )
			else
				$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:200})
		})
	$('#promociones')
		.css( {backgroundPosition: "-53px 0"} )
		.mouseover(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "-53px -26px"} )
			else
				$(this).stop().animate({backgroundPosition:"(-53px -26px)"}, {duration:200})
		})
		.mouseout(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "-53px 0"} )
			else
				$(this).stop().animate({backgroundPosition:"(-53px 0)"}, {duration:200})
		})
	$('#contacto')
		.css( {backgroundPosition: "-144px 0"} )
		.mouseover(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "-144px -26px"} )
			else
				$(this).stop().animate({backgroundPosition:"(-144px -26px)"}, {duration:200})
		})
		.mouseout(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "-144px 0"} )
			else
				$(this).stop().animate({backgroundPosition:"(-144px 0)"}, {duration:200})
		})
		
		
		
	$('#habitaciones,#servicios,#restaurant,#salones,#tarifas')
		.css( {backgroundPosition: "0 0"} )
		.mouseover(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "0 -42px"} )
			else
				$(this).stop().animate({backgroundPosition:"(0 -42px)"}, {duration:200})
		})
		.mouseout(function(){
			if(navigator.appName=='Microsoft Internet Explorer')
				$(this).css( {backgroundPosition: "0 0"} )
			else
				$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:200})
		})
		
		
	$('#btnReserva')
		.mouseover(function(){
			$(this).attr('src','img/haga-su-reservacion-hover.jpg');
		})
		.mouseout(function(){
			$(this).attr('src','img/haga-su-reservacion.jpg');
		})
});

