jQuery(document).ready(function(){
		// Check if a item is empty in the carosel, if so dont display it
		jQuery('.switcher-box li a').each(function(){
			if(jQuery(this).html() == '') {
				jQuery(this).parent().css('display','none');
			}
		});

		// Check if a info box is filled in the carosel, if not hide it
		jQuery('.info-box .info-box-c').each(function(){
			var obj = jQuery(this).html();
			if(jQuery.trim(obj) == '') {
				jQuery(this).parent().css('display','none');
				jQuery(this).parent().parent().find('.shader').css('display','none');
			}
		});

		// Remove Toevoegen aan bestellen button on ons assortiment
		jQuery('.catalog-box .buttons').css('display','none');

		// If main menu element has only one item, change the class to first	
		jQuery('#mainnavi li ul').each(function(){
			if(jQuery(this).find(':first-child').attr('class') == 'last') {
				jQuery(this).find(':first-child').addClass('first');
			}					
		});
});	

