$(function(){
	
	$('a[rel=external]').each(function(){this.target='_blank';});
	$('#gnav li, #lnav li').hover(
			function(){$(this).addClass('hover');},
			function(){$(this).removeClass('hover');}
		).click(
			function(e){e.stopPropagation();if($(this).children('a').attr('href')) window.location=$(this).children('a').attr('href'); }
		);
	$('#gallery a,.gallery a').lightBox();

});
