	function jump_menu(id)
	{
			var dropdownIndex = document.getElementById(id).selectedIndex;
			var dropdownValue = document.getElementById(id)[dropdownIndex].value;

			window.location.href=dropdownValue;

	}
	
	 $(document).ready(function() {
   
 $('.tab').hover(function() {
 		
        $(this).addClass('tab_on2');
 
      }, function() {
  
        $(this).removeClass('tab_on2');
      });
 
 $('.side_menu_button').hover(function() {
 		
        $(this).addClass('side_menu_button_on2');
 
      }, function() {
  
        $(this).removeClass('side_menu_button_on2');
      });
 
});


