// JavaScript Document
$(document).ready(function() {
	$('#slide').cycle({ //Setup slideshow with fade fx. Using JQuery Cycle Plugin.
		fx: 'fade' 
	});
	
	$('.RollButton').live('mouseover mouseout', function(event) { //Function to make rollover buttons work.
		if (event.type == 'mouseover') { this.src = this.src.replace("_Off","_On"); } 
		else { this.src = this.src.replace("_On","_Off"); }
	});
	
	$("#top-nav-menu").wijmenu();
	
	$('.lightbox a').lightBox({fixedNavigation:true});	
	
	$('.hoverme').live('mouseover mouseout', function(event) {
		if (event.type == 'mouseover') {
			$(this).addClass('ui-state-hover');
		} else {
			$(this).removeClass('ui-state-hover');
		}
	});

	$( "#archive-accordian" ).accordion();
});
