var url;
var modifiedUrl;

$('document').ready(function(){
	$('a.wholepage').click(function(e){
	try{
			var embeds = document.getElementsByTagName("embed");
			for(var i = 0; i < embeds.length; i++){
				embeds[i].style.display = "none";
			}	
			$('div.wholepagecover').css("height",$('table.main').height());
			$('div.wholepagecover').show();
			url = this.getAttribute("href");
			return false;
			
		}
		catch(e){
			alert("error");
			window.location = url;
			return false;
			
			//return true;
		}

		
	});


});
