$(document).ready(function() {
	$("#cakes").hover(function() {
		$("#subnav").show();
	} , function() {
		$("#subnav").hide();
	});
});
