/**
 * Global functions for IAMpro.nl
 */


 
// jQuery; Document load
$(document).ready(function()
{

	// open all links with a relation 'external' in a new window
	$("a[@rel='external']").click(function(){
		window.open( $(this).attr("href") );
		return false;
	});
	
	// lightbox
	initLightbox();

	/* projecten */
	$('#project_list').accordion({
		alwaysOpen: false, 
		autoHeight: true,
		active: false
	});
		

});
