function sendContactForm(){
	
}
function openPage(page,id){
	toggleLoader(true);
	$.ajax({
		url: page,
		success: function(data) {
			aboutSubMenu(id);
			$('#innerContentText').html(data);
			toggleLoader(false);
		}
	});
}
function aboutSubMenu(id){
	$('.subMennuLink a').css({color:'#696B6D'});
	$('#subMenuLink_'+id+' a').css({color:'#3375BC'});
}
function toggleLoader(flag){
	if(flag) $('#busy-indicator').css({display: 'block'});
	else $('#busy-indicator').css({display: 'none'});
}
function setFocus(text,ele){
	if(ele.value==text)	 ele.value='';
}

function removeFocus(text,ele){
	if(ele.value=='') ele.value=text;
}
