jq(document).ready(function() {
	
	if (jq('.section-front-page').length) {
		jq('#home-banner-images').cycle({
			fx: 'fade',
			speed: 2500,
			timeout: 9000
		});
	}
	    
    jq('#marker_links').change();
	
	jq('#content a').each(function() {
		url = jq(this).attr('href');
		
		//detect external link
		if ( (url.indexOf('http') >= 0 || url.indexOf('https') >= 0)  &&  !(url.indexOf('amherstida.com')))
			jq(this).attr('target', '_blank');

		// detect files
		else if (url.indexOf('.pdf') > 0 || url.indexOf('.doc') > 0)
			jq(this).attr('target', '_blank');
			
	});
	
}); 
