$(document).ready(function(){	
	
$('.top').hover(function() {
   	var myDrop = $(this).children('.drop');
	$(myDrop).show(100);
}, function() {
	var myDrop = $(this).children('.drop');
	$(myDrop).stop(true, true).hide(0);
	$('.two').css({'display' : 'none'}); /*fixes safari bug with flyout artifacts*/
});

});