jQuery(document).ready(function(){
    jQuery('#columns div.price_tag span').each(function(){
       var text=jQuery(this).html();
       text=text.split(',');
       jQuery(this).html('<b>'+text[0]+',</b>'+text[1]);
    });
    jQuery('#right_column').hide();

    //$('.content-img').corner("round 8px").parent().css('padding', '3px').corner("round 10px")
    //$('.new-products-right').corner("round 4px").parent().css('padding', '1px').corner("round 4px");
    //$('.small-products').corner("round 4px").parent().css('padding', '1px').corner("round 4px");
    //$('.no-outer').corner("round 4px");

    /* $('.cart_quantity_input').keyup(function(e) {
      //alert(e.keyCode);
      if(e.keyCode == 13) {
        var customizationId = 0;
        var productId = 0;
        var productAttributeId = 0;
        
				//retrieve idProduct and idCombination from the displayed product in the block cart
				var firstCut = $(this).attr('name').replace('quantity_', '');
        var token = $(this).attr('rel');
				ids = firstCut.split('_');		
				productId = parseInt(ids[0]);
				if (typeof(ids[1]) != 'undefined')
					productAttributeId = parseInt(ids[1]);
          
        alert('Hola puto mundo');
        ajaxCart.remove(productId, productAttributeId, customizationId);
        ajaxCart.add( $(productId, productAttributeId, true, null, $(this').val(), null);
      }
    }); */

    if(jQuery.browser.msie && /msie 6\.0/i.test(navigator.userAgent)){
        jQuery('body').addClass('ie6fix');
    }
})

function static_hover_link(item , base_dir){
    $("#"+item).addClass("link-hover_static");
}

function showCatalog(){     
      $("#catalog-block").show();     
}


