$(document).ready(function(){
	setInterval("checkURL()",250);
});

var lasturl="home";

function checkURL(hash)
{
	if(!hash) hash=window.location.hash;
	if(hash != lasturl)
	{
		
		lasturl=hash;
		// FIX - if we've used the history buttons to return to the homepage,
		// fill the pageContent with the default_content
		loadPage(hash);
	}
}

function loadPage(url)
{	
	if(url=="")	{document.location='#home';}
	url=url.replace('#','');
	$('#loading').css('visibility','visible');
	$('.menu_on').removeClass('menu_on')
	$('#proj').css('visibility','hidden');
	$('#newsdiv').css('visibility','visible');
	if(typeof(tout1)!="undefined")clearTimeout(tout1);
	if(typeof(tout2)!="undefined")clearTimeout(tout2);
	if(typeof(tout3)!="undefined")clearTimeout(tout3);
	switch(url.substring(0,3))
	{
	case "abo":$('.aboutus').attr('class','aboutus menu_on'); break;
	case "pro":$('.projects').attr('class','projects menu_on');
		$('#proj').css('visibility','visible');
		$('#newsdiv').css('visibility','hidden');
		if(url.search(/Bangalore_FirstTechnologyPlace/)!=-1)$('#proj').html("FIRST TECHNOLOGY PLACE<br /><br />BANGALORE<br />&nbsp;");
		else if (url.search(/Chennai_FirstSoftwarePark/)!=-1)$('#proj').html("FIRST SOFTWARE PARK<br /><br />CHENNAI<br />&nbsp;");
		else if (url.search(/DelhiGurgaon_FirstIndiaPlace/)!=-1)$('#proj').html("FIRST INDIA PLACE<br /><br />GURGAON<br />&nbsp;");
		else if (url.search(/DelhiGurgaon_WorldTradeCenter/)!=-1)$('#proj').html("WORLD TRADE CENTER<br /><br />GURGAON<br />&nbsp;");
		else if (url.search(/DelhiGurgaon_CrystalCity/)!=-1)$('#proj').html("CRYSTAL CITY SEZ<br /><br />NCR<br />&nbsp;");
		else if (url.search(/Kolkata_BengalIntelligentPark/)!=-1)$('#proj').html("BENGAL INTELLIGENT PARK<br /><br />KOLKATA<br />&nbsp;");
		else if (url.search(/Kolkata_FirstIntelligentPlace/)!=-1)$('#proj').html("FIRST INTELLIGENT PLACE<br /><br />KOLKATA<br />&nbsp;");
		else if (url.search(/Kolkata_FirstDigitalPark/)!=-1)$('#proj').html("FIRST DIGITAL PARK<br /><br />KOLKATA<br />&nbsp;");
		else if (url.search(/Mumbai_FirstFinancialPlace/)!=-1)$('#proj').html("FIRST FINANCIAL PLACE<br /><br />MUMBAI<br />&nbsp;");
		else if (url.search(/Mumbai_FirstInternationalFinancialCentre/)!=-1)$('#proj').html("FIRST INTERNATIONAL FINANCIAL<br /><br /> CENTRE &nbsp;&nbsp;&nbsp; MUMBAI<br />&nbsp;");
		else if (url.search(/Pune_InternationalBiotechPark/)!=-1)$('#proj').html("INTERNATIONAL BIOTECH PARK<br /><br />PUNE<br />&nbsp;");
		else $('#proj').css('visibility','hidden');
		break;
	case "hom":$('.home').attr('class','home menu_on'); break;
	case "con":$('.contacts').attr('class','contacts menu_on'); break;
	case "car":$('.careers').attr('class','careers menu_on'); break;
	case "par":$('.partners').attr('class','partners menu_on'); break;
	}
	$.ajax({
		type: "POST",
		url: "load_page.php",
		data: 'page='+url,
		dataType: "html",
		success: function(msg){
			
			if(parseInt(msg)!=0)
			{
				$('#ajaxcontent').html(msg);
				$('#loading').css('visibility','hidden');
			}
		}
		
	});

}