jQuery.noConflict();
jQuery(document).ready(function(){

jQuery(".AddProducto").click(function(){
	var productId = jQuery(this).attr('rel');
	jQuery(this).html("<img src='panel/images/ajax-loader.gif' alt='' width='220' height='19' />");
	jQuery.post("agregacar.php",{'qty[]':1,'id[]':productId},function(data)
        {
			if(data==1){
			jQuery("#headerCartItems").load("items.php")
			jQuery('#ex2').jqmShow();
			jQuery(".AddProducto").html("Añadir al Carro");
			//jQuery('#ex2').jqmShow({ajax: 'miniCart.php',modal:true});
			}
        });
 		return false;
});

jQuery("#frmCarro").submit(function()
	{
		jQuery.post("agregacar.php",jQuery("#frmCarro").serialize(),function(data)
        {
			if(data==1){
			jQuery("#headerCartItems").load("items.php")
			jQuery('#ex2').jqmShow();
			//jQuery('#ex2').jqmShow({ajax: 'miniCart.php',modal:true});
			}
        });
 		return false; 
	});
jQuery("#headerCartItems").load("items.php")
jQuery('#ex2').jqm({ajax: 'miniCart.php',overlay:100, modal:true, trigger: 'a.cartpopuptrigger'});
});
