/**
 * @section   : Global JavaScript functionality
 * @project   : Moorddossier
 * @author    : Daan van Middelkoop
 * @version   : 1.0
 */

$(document).ready(function () {
	
	/* Creates target _blank for anchors with rel=external */
	$('a[rel*=external]').attr('target', '_blank');
	
	/* Initialise Lightbox */
	if ($('a[rel*=lightbox]').length) {
		$('a[rel*=lightbox]').lightBox({fixedNavigation:true});
	}
	
	/* MSIE6 stuff */
	if (!window.XMLHttpRequest){
		DD_belatedPNG.fix('#bewijs, #logo, #vertrouwelijk, #knipsel, #icons img, #content'); /* Apply pngfix for MSIE6 and below */
	}
							
});