// Document load trigger
$(document).ready(function() {

	// Open external links in new window
	$("a[@href^='http']").addClass("external").click(function(e){e.preventDefault(); window.open(this.href); });
	
	// Gallery for news
	if ($('div.news-gallery').length) {
		$('div.news-gallery').galleryScroll({
		  	slideNum:'div.switcher',
		  	autoSlide:4000
		});
	}
});
