/**
 * @section   : Unobtrusive JavaScript events and function calls, triggered on DOMContentLoaded.
 * @project   : Snelbouw
 * @author    : Iwan Luijks <iwan@e-sites.nl>
 * @version   : 1.0
 */

$(document).ready(function () {

	/* Apply pngfix for MSIE6 and below */
	if (!window.XMLHttpRequest && typeof DD_belatedPNG !== 'undefined'){
		DD_belatedPNG.fix('#footer h1');
	}

	/* Creates target _blank for anchors with rel=external */
	$('a[rel=external]').attr('target', '_blank');

	/* Init jQuery LightBox plugin */
	$('.thumb').lightBox();
});
