$(document).ready(function() {

	$(document).pngFix(); 

	$('#nav > li').hover(function(e){
		var target = $(this);
		target.children('.dropdown').fadeIn("fast");
	}, function(e){
		var target = $(this);
		target.children('.dropdown').fadeOut("fast");
	});

});