$(document).ready(function(){
	$('body').addClass('js');
	$('.content li').append('<div class="close"></div>');
	$('.menu a').click(function(){
		$('.content li:visible').hide("fast");
		$($(this).attr('href')).show("slow");
		if($(this).attr('href') == '#map'){
			$('#map p').html('<iframe width="580" height="400" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.ca/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=107958174182174586098.00047d754ad4863e8fee2&amp;ll=45.250114,-63.10581&amp;spn=1.914089,6.251869&amp;output=embed"></iframe>');
		}
		return(false);
	});
	$('.content li .close').click(function(){
		$('.content li:visible').hide("fast");
	});
})
