$(document).ready(function() {

	$(".hoverswap").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.png/, "_hover.png"))
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/_hover.png/, ".png"))
		}
	);

	$(".hoverswapjpg").hover(
		function () {
			$(this).attr("src", $(this).attr("src").replace(/.jpg/, "_hover.jpg"))
		},
		function () {
			$(this).attr("src", $(this).attr("src").replace(/_hover.jpg/, ".jpg"))
		}
	);
});

function submit_form(name) {
	document.getElementById(name).submit();
}

function openNewWindow(URLtoOpen, windowName, windowFeatures) { newWindow=window.open(URLtoOpen, windowName, windowFeatures); }

