  
function callMyPage1(str)
{
	$('#menu').hide();
	$('#content').show('slow');
	$('#content').html('<div id="loader"><img src="images/ajax-loader.gif" width="220" height="19" /><br/>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>Please Wait...</b></div>');
	$('#content').load(str);
}


$(document).ready(function() {
	  $('#content').hide();	  
	  callMyPage1('myhome.html');
	  $('.tTip').betterTooltip({speed: 150, delay: 300});
	}); 

