function smartRollover() {
	$("img").each(function(){
		if($(this).attr("src").match("_off.")){
			$(this).hover(
				function(){
					$(this).attr({"src":$(this).attr("src").replace("_off.", "_on.")});
				},
				function(){
					$(this).attr({"src":$(this).attr("src").replace("_on.", "_off.")});
				}
			);
		}
	});
}

function linx(){
	$("a[rel='external']").click(function(){
		window.open($(this).attr("href"));
		return false;
	});
}

$(function(){
	smartRollover(),linx();
});

