var rotate = function(){ 
	//alert($('rotate-image').get('src'));
	if($('rotate-image').get('src') == 'images/bloom.png'){
		$('rotate-image').set('src', 'images/Hoopfest(bw).png');
		$('rotate-link').set('href', 'http://www.spokanehoopfest.net/site/');
	}else if($('rotate-image').get('src') == 'images/Hoopfest(bw).png'){
		$('rotate-image').set('src', 'images/Rockwood_Logo(bw).png');
		$('rotate-link').set('href', 'http://www.rockwoodclinic.com/');
	}else{
		$('rotate-image').set('src', 'images/bloom.png');
		$('rotate-link').set('href', 'http://www.bloomsdayrun.org/');
	}
};

rotate.periodical(5000);