// JavaScript Document

document.observe("dom:loaded", function() {
  new Rollover('centered', {
			   		suffixSeperator: '_',
					rolloverSuffix: 'hover'
			   });
	//sounds
	$('morning').observe('mouseover', function(event) {
       Sound.play('/files/switch.mp3',{replace:true});
   	});
	$('map').observe('mouseover', function(event) {
       Sound.play('/files/switch.mp3',{replace:true});
   	});
	$('parents').observe('mouseover', function(event) {
       Sound.play('/files/switch.mp3',{replace:true});
   	});
	$('volunteers').observe('mouseover', function(event) {
       Sound.play('/files/switch.mp3',{replace:true});
   	});
	$('guests').observe('mouseover', function(event) {
       Sound.play('/files/water.mp3',{replace:true});
   	});
	$('curriculum').observe('mouseover', function(event) {
       Sound.play('/files/horn.mp3',{replace:true});
   	});
	$('about').observe('mouseover', function(event) {
       Sound.play('/files/plane.mp3',{replace:true});
   	});
	$('events').observe('mouseover', function(event) {
       Sound.play('/files/laughing.mp3',{replace:true});
   	});
});
