$(document).ready(function(){
	$.ifixpng('img/pixel.gif');
	// apply to all png images 
	$('img[src$=.png]').ifixpng(); 
	$('#nav > li').hoverIntent(function(){
		$('> ul', this).slideDown('slow');	
	}, function(){
		$('> ul', this).slideUp('slow');	
	});
});

