function submitForm(){
	if($("#theform").valid()){
			$("#theform")[0].submit();
		}
}

function hideForm(){
	$("#dyncontent").css('display', 'none');

	if (window.opera)		//workarround for operas redraw issues
		document.body.style += "";
}

function showForm(kurs, type){
	$(document).ready(function(){
			$("#dyncontent").load('./contact_ajax.php', "applykurs="+kurs+"&type="+type, function(){
				$("#dyncontent").css('display', 'block');
				formLoaded = true;
				$("#theform").validate();}
			)
	});
}


window.onload = function(){
	// remove all hrefs in contact_buttons if scripting is enabled
	$("a").each(function(){
		if(this.rel=="contact_button"){
			this.href = "#";
		}
	});

		
}
