// JavaScript Document

/* If javascript is disabled, message will be displayed to prompt user to turn on javascript in the browser*/

$(document).ready(function() {
	$('#noscript') .remove();
	
});

/* script to hide/show directions block on the about us page when "click here to display driving directions below link is clicked on*/	
$(document).ready(function() {
		$('.showdirections') .click(function() {
		$('#driving_directions') .toggle ();
		if ($('#driving_directions') .is (':visible')) {
		$(this).val('Hide');
		} else {
		$(this).val('Show');
		}
	});
});
	
	$(document).ready(function() {	
	 $('.close').click(function() {
		 $('#driving_directions') .hide(200);
		 return false;
		 
	 });
	 
	
});
		
	$(document).ready(function() {
		$('#add_this a') .addClass('hide_link a');
		
	});
		
