function linkTo(link)
{
	if(link == 'front')
	{
		$('#content2').show();
		$('#banner').show();
	}
	else if (link == 'aboutus')
	{
		$('#content2').hide();
		$('#banner').show();
	}
	else if (link == 'gallery')
	{
		$('#content2').hide();
		$('#banner').hide();
	}
	else if (link == 'service')
	{
		$('#content2').hide();
		$('#banner').show();
	}
	else if (link == 'location')
	{
		$('#content2').hide();
		$('#banner').show();
	}
	else if (link == 'contactus')
	{
		$('#content2').hide();
		$('#banner').show();
	}
	
         
	$('#contentPanel').html("<div id='processing'></div>");  
	$('#processing').html('<h3>Loading ....</h3>') ;
	$('#processing').append("<img id='loadImg' src='images/loader.gif' alt='Loading ...' title='Loading ...' />");        
    		
	
	var dataString = '&path=page/' + link;
	var url = "/";
	   $.ajax({  
	   type: "POST",
	   url: url, 
	   data: dataString,
	   
	   success: function(data) {
	     $('#contentPanel').html(data);  
	    }  
	   });  
return false; 
}

