
	$(document).ready(function(){
		//Botones   
		$("#wrapper-salir").click(function(){
			window.location.href= 'salir-de-marcha.php';
		});
		$("#wrapper-viajes").click(function(){
			window.location.href= 'viajes-largos.php';
		});
		$("#wrapper-romantico").click(function(){
			window.location.href= 'romantico.php';
		});
		$("#wrapper-relax").click(function(){
			window.location.href= 'relax.php';
		});
		$("#wrapper-conectate").click(function(){
			window.location.href= 'http://www.nuevofordfiesta.com';
		});
		$(".maske").click(function(){
			window.location.href= 'http://www.maskedummies.com';
		});
		$("#wrapper-salir").hover(
		  function () {
			$(this).addClass("salir-hover");
		  },
		  function () {
			$(this).removeClass("salir-hover");
		  }
		);
		$("#wrapper-viajes").hover(
		  function () {
			$(this).addClass("viajes-hover");
		  },
		  function () {
			$(this).removeClass("viajes-hover");
		  }
		);
		$("#wrapper-romantico").hover(
		  function () {
			$(this).addClass("romantico-hover");
		  },
		  function () {
			$(this).removeClass("romantico-hover");
		  }
		);
		$("#wrapper-relax").hover(
		  function () {
			$(this).addClass("relax-hover");
		  },
		  function () {
			$(this).removeClass("relax-hover");
		  }
		);
		$("#wrapper-conectate").hover(
		  function () {
			$(this).addClass("conectate-hover");
		  },
		  function () {
			$(this).removeClass("conectate-hover");
		  }
		);




	});	


