$(document).ready(function(){

	$("div.addContentImageCaptionFloat").find("a.zoom").before("<img src='images/icon_zoom.gif' />&nbsp;");

	$(".section ul.items > li").not(":first").addClass("topDash");
	$(".section p").find("span.brown").addClass("uppercase");
	$("ul.items > li p").find("span.brown").css("text-transform","none");
	
	$("ul#navPageOn > li > a[name=driving_tours]").css('font-weight', 'bold');
	
		//to change More to Close
	$(".toggleSection").hide();
	$(".toggleSection2").hide();
	
	$("a.toggleLink").toggle(function(){
		 $('.toggleSection').slideDown();  
		$(this).html('Close...'); 
	},function(){
		 $('.toggleSection').slideUp(); 
		$(this).html('More Information');
	}); 
	
	$("a.toggleLink2").toggle(function(){
		$('.toggleSection2').slideDown();  
		$(this).html('Close...'); 
	},function(){
		 $('.toggleSection2').slideUp(); 
		$(this).html('Using a GPS?');
	}); 
		
});		
