$(document).ready(function() {
	
	//target blank
	$("a.external").attr("target","_BLANK");
	
	//setup fader
	$(".fader").edFade(); 
	
	//setup lightBox
	$("a.lightBox").lightBox();
	
	//handle nogo
	$("a.noGo").click(function(e){
		e.preventDefault();
	});
	
	//subnav 
	$(".subNav li:last").addClass("last");

});


