/* Internet Explorer Fix*/
jQuery(document).ready(function(){

    if (jQuery.browser.msie && jQuery.browser.version < 7) {

        if (document.all) {
	  jQuery("#StyleMenu ul li").hoverClass (" sHover");}
        }
});

jQuery.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};	
