// 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"); }
	});
	
	$("#menu").wijmenu();
	
});
