/* Javascript functions
------------------------------------------------------*/
jQuery(document).ready(function(){

 /* ROTATOR BANNER MENU - CLICK EFFECT */
 jQuery('.bannerMenu a').hover(function(){
  
  // select menu
  jQuery(this).parents('.bannerMenu').find('li').removeClass('bannerSelected');
  jQuery(this).parents('li').addClass('bannerSelected');

  // show appropriate content
  jQuery('div[id^=contentForTab]').hide(); // hide all tab content
  var x = jQuery(this).parents('li').attr("id"); // select menu id
  jQuery('#contentFor' + x).show(); // concatenate menu id with tab content and show it

 });

 
});
