// CONTROLLING EVENTS IN jQuery

$(document).ready(function () {

   //*** WINDOW RESIZING ***
   // If the User resizes the window, adjust the position of the login div if it overlaps the tabs
   //$(window).bind("resize", windowResized);
   
   // Add 'last_tab" class to last nav_tab li element
   $("#nav_tabs li:last").addClass("last_tab");

   //changeInputs();
   
   /*** HEADER SLIDESHOW ***/
   $('#homepage_slideshow').cycle({ speed: 3000, timeout: 5000, delay: 0 });

});