// USE FOE IE
		// Script to enable hover function on the navigation     
		// override the $ function used in prototype with JQuery
	   jQuery(document).ready(function() {
              jQuery('.hoverable').hover(
                   function() {
                       jQuery(this).addClass('hovered');
              }, function() {
                    jQuery(this).removeClass('hovered');
              }
           );
       });