$(document).ready(function() {	
	$(".thumb").click(function(){
        //Get the src of this clicked item
        pos = this.src;
        $("#large").attr("src",pos);
    });
	$('#contact-us').validate();
	
	if($("#google-map").length>0){
		load();
	}
	
	$("#container #logo, #container #contact-info #booking-manual, #container #contact-info #booking-online").pngfix();
});
function load() {
	
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("google-map"));
		map.addControl(new GSmallMapControl());
		map.setCenter(new GLatLng(51.471829,-0.151327), 13);
		map.openInfoWindowHtml(map.getCenter(),"<div id='map-info'><strong>GSF Motorworks</strong><br />Unit E &amp; F<br>Stone Business Estate<br />Broughton Street, Battersea<br />London<br />SW8 3QR</div>");
	}
}
