$(document).ready(function() {
	$("#nav li").hover(function(){
		$("ul", this).fadeIn(250);
	},
	function(){
		$("ul", this).fadeOut(250);
	});
	
	$(' .pfitem').hover(function(){
		$(this).find('div').animate({bottom: '0px'},{queue:false,duration: 300});
	}, function(){
		$(this).find('div').animate({bottom: '-60px'},{queue:false,duration: 300});
	});
	
	$(' .pfitem-low').hover(function(){
		$(this).find('div').animate({bottom: '0px'},{queue:false,duration: 300});
	}, function(){
		$(this).find('div').animate({bottom: '-30px'},{queue:false,duration: 300});
	});
});
