$(function(){

$("#nav-location").gMap({ 
	markers: [{ latitude: -37.8374, longitude: 144.99287,popup: false }],
	zoom: 15 
	});
                  
                  
           
           
	$('.nav').click(function(){
			var theid = "#nav-"+$(this).attr('id');
			$('.nav').removeClass('selected');
			var shower = $(theid).css('display');
			var toppos = $(theid).css('top');
			if(toppos != '45px'){
			shower = "none";
			}
		
		
			$('.contentBox').hide();
			$('.contentBox').css('top','45px');
			$(this).addClass('selected');
			
			if(shower == 'none'){
			$(theid).show();
			
				} else {
			$(theid).hide();
			$(this).removeClass('selected');	
				}
			 
			 });
		 
                  
                  
                  
 });
                  
            
                  
                  
                  
$(document).ready(function(){
//  Initialize Backgound Stretcher
$(document).bgStretcher({
images: ['images/bg.png'], imageWidth: 1024, imageHeight: 768
});
});
