// Show the submenu of the selected menu item
jQuery(document).ready(function () {
	startbuttons();
});
function startbuttons(){
	jQuery(".start img").hover( function (){
	var src = jQuery(this).attr("src").match(/[^\.]+/) + "_over.jpg";
	jQuery(this).attr("src", src);
	}, function (){
		var src = jQuery(this).attr("src").replace("_over", "");
		jQuery(this).attr("src", src);
	});
}

function submitform(naam){document.forms[naam].submit();}