$(document).ready(function() {
	if ($.browser.msie && parseInt($.browser.version) <= 8) {
		
		$('#footer p.footer-copyright span, #footer p.footer-copyright span a').textShadow({
			  x:      1, 
			  y:      1, 
			  radius: 1,
			  color:  "#ffffff"
			});
	}
	
	
	$('#menu li').bind('mouseenter', function(){
		var objLI = $(this);
		var objUL = this.getElementsByTagName('ul')[0]?$(this.getElementsByTagName('ul')[0]):null;
		if(!objUL)
			return;
		objUL.stop(true, true);
		//objLI.addClass('expanded');	
		objUL.slideDown('fast');
	});
	$('#menu li').bind('mouseleave', function(){
		var objLI = $(this);
		var objUL = this.getElementsByTagName('ul')[0]?$(this.getElementsByTagName('ul')[0]):null;
		if(!objUL){
			//objLI.removeClass('expanded');
			return;
		}
		objUL.stop(true, true);
		objUL.slideUp('fast', function(){objLI.removeClass('expanded');});
	});
});

