// c2b-ImageSwap.js v1.0 
// Copyright (c) 2009 c2b Desugb 
//

var pic="";
var pos=0;
var galleryLink = "http://www.northtorontocatrescue.com/images/pages/adopt-Gallery-fc.php"

var catPics = ['http://www.northtorontocatrescue.com/images/pages/adopt/gallery-fc/Peaches_F_2008-07_thumb.jpg', 'http://www.northtorontocatrescue.com/images/pages/adopt/gallery-fc/Bella_F_2007-10_Feature-1_thumb.jpg']
var catNames = ['feature1', 'feature2']

function setPic() {
	pos = ++pos % catNames.length;
	loadCat();
	window.setTimeout('setPic();',3000);
}

function loadCat() {
	jQuery('#adPic').attr('src', catPics[pos]);
	jQuery('#adLink').attr('href', "http://www.northtorontocatrescue.com/adopt-Gallery-fc.php#" + catNames[pos]);
}