//set up the rlc object
var enl = enl ? enl : {};

//on dom ready 
$(document).ready(function(){
	
	jQuery.each(jQuery.browser, function(i) {
	  if($.browser.msie){
		$('#menu li').hover(function(){
			$(this).addClass('hover');
		}, function() {
			$(this).removeClass('hover');
		});
	  }
	});

})
