$(document).ready(function(){

	//MIRAMOS SI ES IE PARA ASIGNAR EL SLIDETOGGLE PROBLEMATICO O UNA ALTERNATIVA
	if ($.browser.msie) {
    $(".mod .expandirl").click(function(event){
		$(this).next().toggle();					  
	});
 } else {
	
   $(".mod .expandirl").click(function(event){
		$(this).next().slideToggle();					  
	});
 }
   
   //Ciclo mininoticias
   $('.cont_noticias').cycle({ 
         fx: 'scrollDown', 
         speed:	950,  
         timeout:  4000  
     }); 
   
   //EFECTOS LISTADO CATALOGO
   $(".catalogo .librito").mouseenter(function(event){
	$(this).addClass('libritoSelec')
    });
   
    $(".catalogo .librito").mouseleave(function(event){
	$(this).removeClass('libritoSelec')
    });
	
	
	//BOTON COMPRAR
		$('.boton_comprar').click(function(event){
        var la_id = $(this).attr('id');
		$('#metele_aqui').load('includes/anyadir_producto.php', {'productoelegido': la_id }, function() {
 		$('#metele_aqui').load('includes/tracking_precio.php');
		
		});
		
  });
   
});
