$(document).ready(function(){

	$("#carousel").CloudCarousel({			
			xPos: 150,
			yPos: 24,
			autoRotate: 'left',
			reflHeight: 30,
			speed: 0.1,
			autoRotateDelay: 5000
	});


	var pageLoc = window.location;
	if(pageLoc.href.match(/product\-locator$/)){
		function initialise(){
			 var latlng = new google.maps.LatLng(48.2, 6.0);
    		var myOptions = {
					zoom: 4,
					center: latlng,
					mapTypeId: google.maps.MapTypeId.ROADMAP
			};
			var map = new google.maps.Map(document.getElementById("gmap"),myOptions);
		}
		
		initialise();
	}

});



