$(document).ready(function(){
	
	$('#open_sollicitatie_click').click(function(){
		$('#open_sollicitatie').toggle();
	});
	
	$('#direct_sollicitatie_click').click(function(){
		$('#direct_sollicitatie').toggle();
	});
	
	/* ============================ FOOTER AANPASSING ============================ */
	
	// vars
	var footer_tekst = $('#footer').html();
	var verticale_strepen = 3;
	
	// replacen
	for(i = 1; i <= verticale_strepen; i++) {
		var footer_tekst = footer_tekst.replace(' | ', ' <span>|</span> ');
	}
	
	// content opnieuw vullen
	$('#footer').html(footer_tekst);
	
	/* ============================ SUBMENU ============================ */
	$('a.with_sub').click(function(){
		$('.'+$(this).attr('id')).slideToggle(0);
		return false;
	});
	
	
});
