jQuery(document).ready(function() {
jQuery('a.add-to-cart').bind("click", function() {jQuery.get("/add-to-cart.php", { category_id: jQuery(this).attr('id').slice(0, jQuery(this).attr('id').indexOf('-')) , product_id: jQuery(this).attr('id').slice(jQuery(this).attr('id').indexOf('-')+1) }, function(response){jQuery(".shopping-cart#sidebar").html(response)}); return false;});
jQuery('#sort_by').bind("change", function() {document.location.href=this.options[this.selectedIndex].value});
});