window.addEvent('domready', function() {
	if ($('secondary_nav')) {
		$('header_content').setStyle('height', 140);
		var tabs = $$("#secondary_nav li");
		tabs.each(function(tab, i) {
			tab.addEvents({
				"mouseenter" : function() {
					this.addClass('hover_bg');
				},
				"mouseleave" : function() {
					this.removeClass('hover_bg');
				},
				"click" : function() {
					window.location = this.getFirst('a').getProperty('href');
				}
			});
		});
	}
	
	if ($('slideshow')) {
		var slides = new Array();
		
		$$('#slideshow div').each(function(img, i) {
			slides[i] = img.getProperty('id');
		});
		
		var slideshow = new Crossfader(slides, 1000, 4000);
	}
	
	if ($('q1')) {
		var quotes = new Crossfader(new Array('q1','q2','q3'), 1000, 10000);
	}
})