jQuery(document).ready(function($) {

	// Abre en ventana nueva page-item-19
	jQuery("a.shop").click(function(e) {
		window.open("http://glm.bigcartel.com/");
	});
	
	// Substituye dinamicamente el boton send
	jQuery(".wpcf7 input[type=submit]").replaceWith('<div style="text-align:center;"><a class="sendbutton">Send</a></div><br/>');
	jQuery(".sendbutton").click(function(){
		jQuery(".wpcf7-form").submit();
	});
	
	// Fade para el tema de las imagenes
	
	jQuery(".hover a").hide();
	
	jQuery(".hover").hover(
		function() {
			jQuery("a",this).fadeIn(300);
		},
		function() {
			jQuery("a",this).fadeOut(300);
		}

	);
	
});