$(document).ready(function(){
		
	//REPRODUCTOR MP3

$('.descargamp3').live('mouseover mouseout', function(event) {

  if (event.type == 'mouseover') {
  $(this).append('<div class="mensajin">Descargar click boton derecho <br> <strong>guardar enlace como</strong></div>');
  $(".mensajin").corner("4px");
  } else {
   $(this).find(".mensajin").remove();
  }
});

$('.descargamp3').live('mouseover', function() {
 
 // window.open(this.href);
   //     return false;
 // "Haz click con el botón derecho y Guardar como"
});




	
	
	//ELEMENTOS CON CORNER
	
 	$(".boton").corner("4px");
	$(".tiempo").corner("4px");
	
	//SOMBRA TITULO PAGINA
	
	$("#titulo_pag h1").dropShadow({
          	left: 0,
			top: -5,
			blur: 1,
			opacity: .5,
			color: "black"
       });
	
	//LIGHTBOX
	$(".bloque .imagen_link").fancybox();
	$(".bloque .imagen_principal").fancybox();
						 
	//ARREGLAR CONFLICTO LIGHTBOX CON FLASH VIDEO (HACE FLASH WMODE OPAQUE)
	
	//Firefox
    $("embed").attr("wmode", "opaque");
    
    // IE requires more work
    $(document).ready(function() {
        var embedTag;
        $("embed").each(function(i) {
            embedTag = $(this).attr("outerHTML");
            if ((embedTag != null) && (embedTag.length > 0)) {
                embedTag = embedTag.replace(/embed /gi, "embed wmode=\"opaque\" ");
                $(this).attr("outerHTML", embedTag);
            }
        });
    });
	
	
	//BOTON LETRAS
	 $(".letras").click(function () {  
        var caracteristicas = "height=700,width=800,scrollTo,resizable=1,scrollbars=1,location=0";  
        nueva=window.open(this.href, 'Popup', caracteristicas);  
        return false;  
	 });  
	
		//BOTON COMPRAR
		$('.comprar').click(function(event){
        var la_id = $(this).attr('id');
		$('#carrito_top').load('includes/anyadir_producto.php', {'productoelegido': la_id }, function() {
 		$('#carrito_top').load('includes/tracking_precio.php');
		
		});
		});
	
});
