/* 
* JavaScript Document
* st-theodore.org
* jquery.onload.home.js
* 
* includes/js/jquery.onload.home.js
* 
* Author    :   Greg Merriman
* Copyright :   Copyright 2009 (c) The Parish of Saint Theodore, Port Talbot
* Created   :   Wed 26 Aug 2009
* Modified  :   Wed 11 Nov 2009
* 
*/

 
// When the DOM is ready...
$(function(){
	
	//do slideshow...
	$('#slideshow').cycle();
	
	function onBefore() {
		$('#title').html(this.alt);
	}
	
});

