/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

jQuery(document).ready(function(){
  jQuery('#switcher.tab').hover(function() {
    jQuery(this).addClass('hover');
  }, function() {
    jQuery(this).removeClass('hover');
  });
})

