$(function(){
	
	$('#services').hover(function(){
		$('#drop-down').show();
	}, function(){
		$('#drop-down').hide();
	});
	
	$('#drop-down').hover(function(){
		$(this).show();
		$('#nav #services').css({backgroundPosition: "(0 -39px)"});
	}, function(){
		$(this).hide();
	});
	
});
