$(document).ready(function()
{
	$(".changePage").livequery('click', function()
	{
		var href=$(this).attr("href");
		href=href.replace(/index.php\?p\=/,'');
		var pageId='#'+href;
		$('.pageContainer').slideUp(600);
		
		$(pageId).slideDown(600);
		
		return false;
	});
	
	$('#competitionDiv').livequery(function() { $(this).show(); });
	$('#coverDiv').livequery(function() { $(this).show(); });

 $(".closeParentFade").live("click",
	function()
	{
		$('#coverDiv').fadeOut(600);		
		$('#competitionDiv').fadeOut(600);	
	}
 );


});