$(document).ready(function() {
	
	//////////////////////////////////////////////////////////////////////////////
	// Slideshow style
	//////////////////////////////////////////////////////////////////////////////
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	
	//////////////////////////////////////////////////////////////////////////////
	// Make all http:// links open in a new window
	//////////////////////////////////////////////////////////////////////////////
	$("a.new_window").attr('target','_Blank');

	//////////////////////////////////////////////////////////////////////////////
	// Do the map links on the Contact us page.
	//////////////////////////////////////////////////////////////////////////////
	
	$(".map_nav a").click(function(){
		$(".map_nav a").attr("class","");
		$(this).attr("class","selected");
		
		//Convert the anchors text into a usable classname
		var class_name = $(this).text();
		title_text_converted = class_name.replace(/\s+/g, "_");
		title_text_converted = title_text_converted.replace(/-/g, "_");
		title_text_converted = title_text_converted.replace(/[&+%.-]/g, "");

		// Make the title lower case to use for class name
		title_text_converted = title_text_converted.toLowerCase();
		
		$(".find_us .directions").addClass("hidden");
		$(".find_us ." + title_text_converted).removeClass("hidden");
	});
	
});
