/* General application function on document ready event - written by netfiesta.nl */
$(document).ready(function(){
	$("#vacature_frame").load( function() {
		calculate_height = document.getElementById("vacature_frame").contentDocument.documentElement.scrollHeight;
		$("#vacature_frame").css("height", (calculate_height+50)+"px"); 
	});
});
