// JavaScript Document
$(function(){
	
	$('a.baldhead').click(function(){ 
		window.open("http://www.baldheaddesign.com"); 
		return false; 
	});
	
	$('#logo').click(function(){ 
		window.open("http://www.oxfordautoservice.com/index.html",'_self');
	});
		
	// get started popup
	$('#map a').click(function(){
		$('#page-wrap').append('<div id="cover"></div>').append('<div id="map-pu"><h2>Map is Loading...</h1></div>');
		$('#cover').fadeIn(function(){
			$('#map-pu').load("http://www.oxfordautoservice.com/map.html",function(){
				$(this).fadeIn().append('<div id="close">close box</div>');
				$('#close').click(function(){
					$('#map-pu').hide();
					$('#cover').hide();
				});
			});
		});
	   return false;
	});


});