$(document).ready(function(){

	$("a[href$=pdf]").addClass("pdf");
	
//////////The last one doesn't get a piece of cake
	$("#navigation").find("li:last").each(function(){
	//	$(this).css({"border":"none"});
	});


	$("a[rel^='box']").prettyPhoto({
		hideflash: true
		
	});
	$("a[rel^='box']").click(function(){
		//$('#videokawartha').css('display','none');
	});
	
//////////Tell me where i'm going
	$("a[rel='3m4il']").each(function(){
		var spaceShip = $(this).text();
		var spaceStation = $(this).attr('href');
		
		$(this).attr({
			href: 'mailto:'+ spaceShip +'@'+ spaceStation +'',
			rel: 'nofollow'
		});
		$(this).text(''+ spaceShip +'@'+ spaceStation +'');
	});
});