// sitespecific JavaScript Document


//Sitemap, opens sitemap is new window wihc slides out. 
//For users without Javascript, clicking the link will taken them to spitemap page. 
//Theer is no inclide Javascript, so its important to understand that the effect is 
//called by clicking a link on the class ".siteMap" 
//Use id #sitemapbox for the div containg sitemap navigation (Position absolutely, 
//ideally before closeing body tag but above other scripts)

$(document).ready(function() {
  $('.siteMap').click(function() {
	$('#sitemapbox').show('slow');
return false
});
});

$(document).ready(function() {
  $('#sitemapbox .button').click(function() {
	$('#sitemapbox').hide('slow');
return false
});
});

// Next JavaScript Effect