$(document).ready(function(){
						   
if(google.loader.ClientLocation){
	$(".geoLat").val(google.loader.ClientLocation.latitude);
	$(".geoLng").val(google.loader.ClientLocation.longitude);
	$(".city").val(google.loader.ClientLocation.address.city);
}
});
function show($menu){
	$('.subMenu').hide('slow');
	$("#"+$menu).show('slow');	
}
function display($id,$this){
	$("#navigation li a").css("background-color","inherit");
	//$(this).parent().css("background-color","inherit");
	$(".popup").fadeOut('fast');
	$("#"+$id).fadeIn('slow');	
	$($this).css("background-color","black");
}
function hide(){
	$(".popup").fadeOut('fast');
	$("#navigation li a").css("background-color","inherit");
}