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

function request() {
    window.open("request.php","Diploma","menubar=no,width=540,height=520,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);
	});
});