var url='';

function update_content(){
	if (document.location.href != url){
		url = document.location.href;
		var arry = new Array();
		arry = url.split('#');
		if (arry.length == 1){
			jQuery('#content').load('webpages/home.php');
		}
		
		else {
			page = arry[1];
			
			var page_location;
			if (page=='products_and_services') page_location = 'webpages/'+page; 
			else page_location = 'webpages/'+page+'.php';
			jQuery('#content').load(page_location);
			
		}
		
	}
	
}


jQuery(document).ready(function() {
	navigate=setInterval("update_content()",50);
    

});

