$(function(){
	$('ul#pf li').each(function(){
		$(this).hover(pfRollOver, pfRollOut);
		$(this).click(function(){location.href=''+$(this).children('a').attr('href')+'';})
	});
	$('#color_selector li').click(function(){
		var c = $(this).css('background-color');
		$('body').css('background-color',c);
	});
});

function pfRollOver(){
	$(this).append('<a href="'+$(this).children('a').attr('href')+'" class="jump">');
	$(this).children('.info').stop(true,true).animate({opacity:0.85},100);
	//$(this).children('.base').stop(true,true).fadeIn(100);
}
function pfRollOut(){
	$(this).children('a.jump').remove();
	$(this).children('.info').stop(true,true).animate({opacity:0},0);
	//$(this).children('.base').hide();
}
