$(document).ready(
	function()
	{
		$("#fons").height($(document).height());
		$("#fons").width($(document).width());
	
		//---------------------------------------------------------------
		
		$(".cap").click(
				function()
				{
					document.location = index;
				}
			);
			
		
		//---------------------------------------------------------------
		$(".prettyphoto").prettyPhoto();
	}
);


$(window).resize(
	function()
	{
		$("#fons").height($(document).height());
		$("#fons").width($(document).width());
	}
);

$(window).scroll(
	function()
	{
		$("#fons").height($(document).height());
		$("#fons").width($(document).width());
	}
);
