$(document).ready(function(){
	$("#dropdown").hide();
	$("#homebutton").hover(function(){
		$("#dropdown").hide();
	});
	$("#blogbutton").hover(function(){
		$("#dropdown").hide();
	});
	$("#storebutton").hover(function(){
		$("#dropdown").hide();
	});
	$("#artistsbutton").hover(function(){
		$("#dropdown").show();
	});
	$("#downloadsbutton").hover(function(){
		$("#dropdown").hide();
	});
	$("#contactbutton").hover(function(){
		$("#dropdown").hide();
	});
	
	$(document).click(function(){
		$("#dropdown").hide();
	});
});

