
$(document).ready(function() {

	if(location.href.indexOf('werkenbijdekempenaer.nl') != -1 && location.href.indexOf('werkenbijdekempenaer.nl/masterclass.aspx') == -1) location.href = "http://www.dekempenaer.nl/werken-bij--vacatures.aspx";
	if(location.href.indexOf('werkenbijdekempenaer.nl/masterclass.aspx') != -1) location.href = "http://www.dekempenaer.nl/werken-bij--vacatures/masterclass-en-activiteiten/masterclass--2011.aspx";

	$(".topMenuAction").click( function() {
		if ($("#openCloseIdentifier").is(":hidden")) {
			$("#slide").fadeOut({ 
				}, 500 );
			$("#openCloseIdentifier").show();
		} else {
			$("#slide").fadeIn({ 
				}, 500 );
			$("#openCloseIdentifier").hide();
		}
	});  

	// Homepage bloklinks
	$('div[class*=intro-vlak-rechtsgebieden]').each(function() {
		var $this = $(this);
		var links = $(this).find('.hiddenLink');
		
		if(links.length > 0) {
			var linkTxt = links.eq(0).val();
			
			$this.css('cursor', 'pointer');
			$this.click(function() {
				(linkTxt.indexOf('http://') != -1) ? window.open(linkTxt) : location.href = linkTxt;
			});
		}
	});
	
	// Homepage bloklinks
	$('div[class*=inhoud-blokken-onderin]').each(function() {
		var $this = $(this);
		var links = $(this).find('.hiddenLink');
		
		if(links.length > 0) {
			var linkTxt = links.eq(0).val();
			
			$this.css('cursor', 'pointer');
			$this.click(function() {
				(linkTxt.indexOf('http://') != -1) ? window.open(linkTxt) : location.href = linkTxt;
			});
		}
	});

});
