//Call function when the dom is ready
//jQuery.basehref = '';
jQuery.basehref = '/wp-content/themes/hartvannederland.nl/';
jQuery.basehrefOld = '/wp-content/themes/hartvannederland.nl/';
//jQuery.basehref = 'http://l3c.cdn.sbsnet.nl/wp/hartvannederland.nl/';

jQuery(document).ready(function($){
//global scripts & behaviors

	$.include($.basehref+'js/g-behaviors.js', 
		[ 
			$.include($.basehref+'js/jquery.media.js'),
			$.include($.basehref+'js/jquery.metadata.js')
			
		] 
	);
	
//gallery scripts & behaviors	
	if ( $('.photo-gallery').length > 0 )
	$.include($.basehref+'js/gallery-behaviors.js', 
		[ 
			$.include($.basehref+'js/jquery.sl-adplayer.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");

// end
});

