$(document).ready(function() {

    // OPEN LINK IN NEW WINDOW
	$('a.new-window').click(function(){
		window.open(this.href);
		return false;
	});

    // LIGHTBOX
	$('a.lightbox').each(function(){
		$(this).lightBox();
	});
	$('.lightbox').each(function(){$(this).find('a').lightBox()});

	// MENU
	$('#menu area:not(.selected)').hover(function(){
		var id = $(this).attr('alt');
		$('#menu #blank').attr('src', base_dir + 'images/menu/' + id + '.gif')
	},function(){
		$('#menu #blank').attr('src', base_dir + 'images/blank.gif')
	});
	



});