$(document).ready(function(){
	// hover images
	$("div#banner a").hover(function(){
		//over
		var sa = $(this).children("img").src().split("_");
		$(this).children("img").src(sa[0] + "_on.gif");
	},
	function(){
		//out
		var sa = $(this).children("img").src().split("_");
		$(this).children("img").src(sa[0] + "_off.gif");
	});
	// last menu item border
	$("div#primary_nav li:first").css("border-right", "0px solid");
	$("a.poplink").click(function(e){
		window.open(this.href, 'popup', 'width=750, height=500, scrollbars=yes, resizable=yes');
		return false;
	});
	$("a.spoplink").click(function(e){
		window.open(this.href, 'popup', 'width=350, height=200, scrollbars=yes, resizable=yes');
		return false;
	});
});
