
window.addEvent('domready', function(){
	var myLatlng = new google.maps.LatLng(51.583121,0.420409);
	var myOptions = {
		zoom: 12,
		center: myLatlng,
		mapTypeControl: false,
		navigationControl: true,
		mapTypeId: google.maps.MapTypeId.ROADMAP   
	}
	var map = new google.maps.Map($('google_map'), myOptions);
	var marker = new google.maps.Marker({
			position: myLatlng,
			map: map,
			title: 'Premier Shutters'
	});

	var frmCheck = new FormCheck('contact_form', {
		submitByAjax: true,
		ajaxOptions: {
			evalScripts: true
		},
		onAjaxSuccess: function(response){
			if(response == 1){
				$('form_holder').set('html', '<h2>Thank you</h2><p>Your enquiry has been received.  One of our highly experienced team will contact you shortly to discuss your requirements further.</p>');
				//$('conversion').set('html', response);
				var coords = $('col1').getCoordinates();
				window.scrollTo(0, coords.top);
				$('conversion').setProperty('src', 'http://www.premiershutters.co.uk/conversion.php');
			}
			else{
				$('form_errors').set('html', 'There was a problem sending your enquiry, please try again.');
			}
		}
	});
});
