// JavaScript Document

$(document).ready(
		function(){
			$('#mainPic').innerfade({
				speed: 'slow',
				timeout: 4000,
				type: 'sequence',
				containerheight: '476px'
			});
			
			$('.fade').innerfade({
				speed: 'slow',
				timeout: 4000,
				type: 'sequence',
				containerheight: '1.5em'
			});
			
			$('a img').hover(function(){
				$(this).attr('src', $(this).attr('src').replace('_off', '_on'));
				  }, function(){
					 if (!$(this).hasClass('currentPage')) {
					 $(this).attr('src', $(this).attr('src').replace('_on', '_off'));
				}
		    });
			
			$("#pageTop a").click(function(){
				$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
				return false;
		    })
		}
);
