function preload()
	   {
		   $("#hide").css('visibility','hidden');
	var loading = $('<table align="center" width="150" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td valign="middle"><img vspace="300" src="images/preload.gif" border="0" /></td></tr></table>').appendTo(".wrapper_main");
		$(".inwrap").hide();
		$("#A").load(function() 
	  {
		loading.hide();
		$(".inwrap").show();
	  }) 
		
	  }
	 
function preloadfirst()
{
	var loading = $('<table align="center" width="150" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td valign="middle"><img vspace="100" src="images/preload.gif" width="30px" border="0" /></td></tr></table>').appendTo(".wrapper_main");
	$(".inwrap").hide();
	firstImg= new Image();
	firstImg.src = document.getElementById("A").src;
	$(firstImg).load(function() 
	  {
		loading.hide();
		document.getElementById('A').src=firstImg.src;
		$(".inwrap").show();
	  }) 
		
}
