$(document).ready(function(){
  /* Adds the Submenu Navigation to the Website */
  $("#nav li").each(function(){
    var identification = $(this).attr("id");
    var subnav = identification.replace("_link", "_subnav");
    var $subnav = $("#" + subnav);
    var $nav_link = $(this);
  
    $nav_link.hover(
      function(){$nav_link.find("a:eq(0)").addClass("activated"); $subnav.css("display", "block");}, 
      function(){$subnav.fadeOut(500); $nav_link.find("a:eq(0)").removeClass("activated");}
	  );
  });
  
  /* Adds Table Sort functionality */
  $("#model_table thead th").each(function(){$(this).css("cursor","pointer")});
  $("#model_table").tablesorter({cssAsc: "asc", cssDesc: "desc"});
  
  /* Hero Image */
  $("#hero_image").cycle({speed: 5000}); /* To change the speed of the hero images, change this number (it's in milliseconds) */

});