$(document).ready(function(){

  // Navbar
  $("ul.nav").superfish({
    	hoverClass	: "sfHover",
    	pathClass	: "overideThisToUse", /*new to Superfish v1.2a*/
    	delay		: 800,
    	animation	: {opacity:"show"},
    	speed		: "normal"
  });

  // Tablesorter
  $(".sortable").tablesorter();

  // Product List Filter
  $("select#category_filter").change(function () { 
    $('table.filterable tbody tr').hide(); 
    $("select option:selected").each(function () {
      switch ($(this).val()){
        case 'category_View_All':
          $('table.filterable tbody tr').fadeIn();
          break;
        default:
          $('table.filterable tbody tr.'+this.value).fadeIn();
      }
    });
  });




  // Sidenav sliders
	$("ul#sidenav").accordion({
		alwaysOpen: false,
		header: 'h2',
		autoHeight: false,
   	active: false
	})


  // 
  // $("ul.sidenav_sub").hide(); 
  // 
  // $('a#sidenav_about_link').click(function(){
  //   $('li#sidenav_about ul').slideToggle("fast"); // show this one
  //   return false;
  // });
  // 
  // $('a#sidenav_divisions_link').click(function(){
  //   $('li#sidenav_new ul').slideToggle("fast"); // show this one
  //   return false;
  // });
  // 
  // $('a#sidenav_partners_link').click(function(){
  //   $('li#sidenav_collections ul').slideToggle("fast"); // show this one
  //   return false;
  // });
  // 
  // $('a#sidenav_corporate_link').click(function(){
  //   $('li#sidenav_core ul').slideToggle("fast"); // show this one
  //   return false;
  // });






  

  
});