$(function(){
		
	common();
	
	iepnghack();
	
	forms({});
	
});



// ZET HIER JE COMMON FUNCTIES IN
var common	=	function(){
		
	// externe links
	$('a[rel="external"]').attr('target', '_blank');
}



// FUNCTIES VOOR TRANSPARANTE PNG ONDERSTEUNING IN IE6
var iepnghack	=	function(){

	if($.browser.msie && /MSIE\s(5\.5|6\.)/.test(navigator.userAgent)){
		DD_belatedPNG.fix('#site-footer, .form-submit');	
	}
}

// PRINT DEBUG INFO
var debug = function(text){
	if($.browser.mozilla && typeof(console) != 'undefined'){
		console.info(text);	
	}	
}
