//Call function when the dom is ready
$.basehref = '/design/channel/shownieuws/';

$(function() {

	//global scripts & behaviors
	$.include($.basehref+'js/g-behaviors.js', 
		[ 
			$.include($.basehref+'js/jquery.media.js'),
			$.include($.basehref+'js/jquery.metadata.js')
	    ] 
	);

	//Sterren	
	if ( $('body.sn .mo-c.sterren').length > 0 )
	$.include($.basehref+'js/cycle-behaviors.js', 
		[ 
			$.include($.basehref+'js/jquery.cycle.js')
	    ] 
	);
	
	//gallery scripts & behaviors	
	if ( $('.photo-gallery').length > 0 )
	$.include($.basehref+'js/gallery-behaviors.js', 
		[ 
			$.include($.basehref+'js/jquery.gallery.js')
		] 
	);

	
	//smack the body back in shape (IE 6 rendering bug)
	if ( $.browser.msie && ($.browser.version < 7.0 ) )
	$("body").addClass("smack");

	
});


