$(document).ready(function(){

	 // Open external links in a new window.
	 $("a").filter(".link").click(function(){
	   return !window.open(this.href);
	 });

	$("a.treatmentdescription").click(function(){
		$("p.treatmentdescription").slideUp(500);
		$(this).next("p.treatmentdescription").slideDown(500);
		return false;
	});
	
	$("p.treatmentdescription").css("display", "none");

	// Cycle gallery page.
	$('.slideshow').innerfade({ 
    	speed: 2500,
    	timeout: 5000,
    	runningclass: 'gallery'
  	});

	 // Add map.
	 var map = $("#map");
	 if (map)
	 {
	 	$.create("iframe", {"src" : "http://www.salonguineapig.co.uk/location/The Waxing Studio/-0.725154/51.988891/7/350/300/", "width" : "355", "height" : "350"}).appendTo(map);
	 }
});

