	function updateMandje(targetid,targeturl) {
		 $("#"+targetid).load(targeturl);
	}
	$(document).ready(function() {
		  $('#productCatOverzichtDiv').accordion({
			autoheight:false,
			active: '.activeitem',
			header: '.menulink'
		  });
		
		
		  if(typeof(blocked_melding) != 'undefined' && blocked_melding == 'true'){
		  	alert('U Bent geblokkeerd, gelieve contact met ons op te nemen middels de pagina Contact.');
		  }
		  if(typeof(wronglogin_melding) != 'undefined' && wronglogin_melding == 'true'){
		  	alert('U heeft niet de juiste inloggegevens ingevuld.');
		  }
		
		
		  $("a#group").fancybox({ 'zoomSpeedIn': 0, 'zoomSpeedOut': 0, 'overlayShow': true }); 
		
		  $("a.zoom").fancybox();
		  $("a.infobox").fancybox({
			 'hideOnContentClick': false,
			 'frameWidth': 625,
			 'frameHeight': 390,
			 'zoomSpeedIn' : 0,
			 'zoomSpeedOut' : 0
			 }); 
		 
		  $("a.orderbox").fancybox({
			 'hideOnContentClick': false,
			 'frameWidth': 800,
			 'frameHeight': 500,
			 'zoomSpeedIn' : 0,
			 'zoomSpeedOut' : 0
		  }); 
		  
		  	  
		  // Fix subtitle producten overzicht:
		  // ---------------------------------
		  
		  if($(".productgroepTitel").length && $(".productgroepTitel").html() != ""){
		  	
		  	if ($.browser.msie) {
		  		tempVarIE = $(".productgroepTitel").html();
		  		tempArrayIE = tempVarIE.split('</DIV>');
		  		document.getElementById('subTitelBalk_innerContent').innerHTML = tempArrayIE[0];
		  		$(".activeitem").css('font-weight', 'bold');
		  		productString = $(".productgroepTitel").html();
		  		activeSubItemArr = productString.split('&gt; ');
		  		activeSubItemArray = activeSubItemArr[1].split(' ');
		  	}
		  	else{
		  		$("#subTitelBalk_innerContent").html($(".productgroepTitel").html());
		  		$(".activeitem").css('font-weight', 'bold');
		  		productString = $(".productgroepTitel").html();
		  		activeSubItemArr = productString.split('&gt; ');
		  		activeSubItemArray = activeSubItemArr[1].split(' ');
		  	}
		  	
			$('.submenuitem').each(function(){
				$(this).find('ul').find('li').find('a').each(function(){
				
					tempArrayLength = activeSubItemArray.length;
					
					if(tempArrayLength == 3){
						varToCheckMultipleSpaces = activeSubItemArray[0] + " " + activeSubItemArray[1];
						if(varToCheckMultipleSpaces == $(this).html()){
							$(this).css('font-weight', 'bold');
						}
					}
					else if(tempArrayLength == 4){
						varToCheckMultipleSpaces = activeSubItemArray[0] + " " + activeSubItemArray[1] + " " + activeSubItemArray[2];
						if(varToCheckMultipleSpaces == $(this).html()){
							$(this).css('font-weight', 'bold');
						}
					}
					else if(tempArrayLength == 5){
						varToCheckMultipleSpaces = activeSubItemArray[0] + " " + activeSubItemArray[1] + " " + activeSubItemArray[2] + " " + activeSubItemArray[3];
						if(varToCheckMultipleSpaces == $(this).html()){
							$(this).css('font-weight', 'bold');
						}
					}					
					else if(activeSubItemArray[tempArrayLength-2] == $(this).html()){
						$(this).css('font-weight', 'bold');
					}
				});
			});
		  }
		  
		  
		  // FIx IE SEARCH BAR:
		  // ---------------------------------
		  if ($.browser.msie) {
		  	$("#zoekinproducten").css('margin-top','-38px');
		  }
		  
		  
		  // FIX Winkel pagina image
		  if ($.browser.msie) {
		  	$(".csc-textpic-imagewrap").find('img').css('margin-left','16px');
		  }
		  else{
		 	$(".csc-textpic-imagewrap").find('img').css('margin-left','16px');
		  }
		  
		  
		  // FIX IE6 ISSUES:
		  // ------------------------------------
		  if ($.browser.msie) {
			if(parseInt($.browser.version) == 6) {
		  		$(".product").css('background-repeat','no-repeat');
		  		$(".product").css('margin-right','-20px');
		  		$("#topBalk").css('margin-bottom','-22px');
		  		$("#menuBalkTop").height(52);
		  		if($("#contentDiv").height() < 700){
		  			$("#contentDiv").height(700);
		  			$("#rightColumn").height(700);
		  			$("#contentDiv_innerContent").height(700);
		  		}
		  	}
		  }

		  
		  // fadeIn Zoekbalk:
		  // ------------------------------------
		  $(".zoeken_textinput").fadeIn(1000);
		  
		  
		  // FIX Welkom tekst locatie (rechtsboven)
		  // --------------------------------------
		  $("#loggedInDivFixedPos").html($("#loggedInText").html());
		  
		  
		  // FIX voor Menu Hoofdcategorie Link:
		  // ----------------------------------
		  $(".menulink").click(function() {
		  	if($(this).attr('href')){
  				window.location.href = $(this).attr('href');
  			}
		  });
		  
		  // FIX voor menu items lege hoofdcategorien (verberg deze)
		  // --------------------------------------------------------
		  $(".submenuitem").find('ul').each(function(){
		  	// ROEL NOG DOEN --> VIM TUSSEN GEKOMEN...
		  });
		  
	});

