// this executes all the "window.onload" type events
$(document).ready(function(){
	// slideshow
	$('.simpleSlideShow').slideShow({
		interval: 9
	});
	$('p.warning').fadeIn(3000);
}); 
