$(document).ready(function(){

	$("a.link").hover(function() {
		$(this).parent().find("ul.supernav").slideDown('fast').show();
	});

	$("ul.supernav").parent().hover(function() {
		}, function(){
			$(this).parent().find("ul.supernav").wait(500).slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});

});
