
var flashLaunch = function(){
		Mediabox.open('hsafla.aspx', 'Educational Presentation', '600 808');
	}

window.addEvent('domready', function(){
	
	if (window.ie == true || window.gecko == true) {
		new SmoothScroll();
	};
	
	if ($(document.body).hasClass('news')) {
		//Slider for news and events.
		//$('news_events').load('feed_news.aspx');
		$('news_events').addEvents({
			mouseenter: function(){
				// We set the cursor to pointer so users know they can click this region
				// this.setStyle('cursor','pointer');
	 
				// Change background color on mouseover
				this.morph({
					'height': 210
				});
			},
			mouseleave: function(){
				// Morphes back to the original style
				this.morph({
					'height': 113
				});
        	}
		});
	};
	
}); 