//ASA GLOBAL JS
function contact() {
    window.open("contact-us.php","Email","menubar=no,width=610,height=600,toolbar=yes");
}

function profile() {
    window.open("profile_temp.php","Profile","menubar=no,width=610,height=600,toolbar=yes");
}


function reg() {
    window.open("registraion.php","Winter Workout Reg Form","menubar=no,width=610,height=600,toolbar=yes");
}


//Gives all Buttons with Class ".over" a hover
$(function() {
	$(".over")
	 .mouseover(function() {
	 var src = $(this).attr("src").match(/[^\.]+/) + "-over.gif";
	 $(this).attr("src", src);
	})
	.mouseout(function() {
	 var src = $(this).attr("src").replace("-over", "");
	 $(this).attr("src", src);
	});
});


