$(document).ready(function() {
	
	$("#navigation ul li").hover(function() {
		//$(this).css({ 'z-index' : 99 });
		$(this).find(".dd").show();
		$(this).find("a:eq(0)").addClass('hover');
		}, function() {
		//$(this).css({ 'z-index' : 1 });
		$(this).find(".dd").hide();
		$(this).find("a:eq(0)").removeClass('hover');
	});
	
})
