			$(function() {

				$("#header li").hover(function(){
					$(this).children("div").show();
					$(this).children("a").css({'background-position':'top'});
				}, function(){
						$(this).children("div").hide();
					$(this).children("a").css({'background-position':'bottom'});
				});
			});
