$().ready(function() {
	 $(".form_gebouw_type").click(function(){
			$("#regiobox").fadeOut();
			$.post("fileadmin/scripts/getRegios.php","type="+$(this).val() ,function(data)
				{
					$("#regiobox").html(data);
					$("#regiobox").fadeIn();
				});
			$("#plaatsbox").fadeOut();
			$.post("fileadmin/scripts/getPlaatsen.php","type="+$("input[@name='bouw_type']:checked").val()+"&regio="+$('[name=regio]').val() ,function(data)
				{
					$("#plaatsbox").html(data);
					$("#plaatsbox").fadeIn();
				});
		});
});

function change_regio(rid)	{
	$("#plaatsbox").fadeOut();
	$.post("fileadmin/scripts/getPlaatsen.php","type="+$("input[@name='bouw_type']:checked").val()+"&regio="+rid, function(data) { $("#plaatsbox").html(data);
	$("#plaatsbox").fadeIn();});
}

function showBalloon(i) {
	GEvent.trigger(gmarkers[i], "click");
}

function show(element){
    element.className += "hover";
}
   
function hide(element){
	element.className = element.className = "";
}
