startup = function() {
	// set up menu hovers
	$("a.menulink").hover(
		function () {
			var src = $(this).css("background-image");
			$(this).css("background-image", src.replace("_", "Hover_"));
		},
		function () {
			var src = $(this).css("background-image");
			$(this).css("background-image", src.replace("Hover", ""));
		}
	);
	
	// preload hover images
	$("a.menulink").each(function () {
		var src = $(this).css("background-image");
		src = src.replace("_", "Hover_");
		src = src.substr(5, (src.length - 7));
		$("<img>").attr("src", src).hide();
	});
	
	// modify remote links to open in new window
	$("a").click(function() {
		if ($(this).attr("href").search("crashcaptains\\.com") == -1 && $(this).attr("href").substr(0, 1) != "#") {
			window.open($(this).attr('href'));
			return false;
		}
	});
}

$(startup);
