
/*

 Applies bindings to left-hand portion of browse, market, and sales in the
 global section of the site

*/

$(window).ready(function() {
  $("#filter_categoryclassid,#filter_categoryid,#filter_contentid,#sort_menu").bind("change", function() { 
    $("#browse_left_form").submit();
  });
  $("#browse_mode").bind("change", function() { $(this.form).submit() } );  
});




