$(window).load(function() {
	// GOOGLE MAPS HAS TO BE ONLOAD OR SAFARI FLIPS
	if ( $("#map").length > 0 ) {
		if (GBrowserIsCompatible()) {
			var gmap	= $('#map');
			var map		= new GMap2(gmap.get(0));
			var center	= new GLatLng(50.85453613990842, 3.353104591369629);
			var marker	= new GMarker(center);
			
			map.setCenter(center, 14);
			map.addOverlay(marker);
			marker.openInfoWindowHtml("<h2 style='margin-bottom:0px;padding-bottom:0px'>O.C. d'Iefte</h2>Hoogstraat 122<br />8540 Deerlijk");
			map.panTo(center);
		}
	}
});

$(document).ready(function() {
	// FORM FUNCTIONS
	// CHECK IF WE HAVE A FORM
	if ( $("#reservatie-form").length > 0 ) {
		$("input.textfield").focus(function() {
			$(this).next('label').css('color','#C10000');
		});
		
		$("input.textfield").blur(function() {
			if(this.value == "") { $(this).css('background-color', '#FFFFE0'); } else { $(this).css('background-color', '#FFFFFF'); }
			$(this).next('label').css('color','#999');
		});
		
	}
	
	$('a.external').click(function() { window.open(this.href); return false; });

	
});