$(document).ready(function(){
	$(function() {$('#slideshow')
	.cycle({ 
	    fx:     'fade', 
	    speed:  2500, 
	    timeout: 2500, 
	 	pause:   1
	});});
	
	
	$(".location h3:first").addClass("active");
	$(".location div:not(:first)").hide();
	
	$(".location h3#athy a").click(function(){

	 $(".location div#cashel_map").hide();
	 $(".location div#athy_map").show();
	$(".location h3#athy").addClass("active");
	
	  $(".location h3#cashel").removeClass("active");
		return false;
	});
	
	$(".location h3#cashel a").click(function(){

	 $(".location div#athy_map").hide();
	 $(".location div#cashel_map").show();
	$(".location h3#cashel").addClass("active");
	
	  $(".location h3#athy").removeClass("active");
		return false;

	});


});
