var so = new SWFObject("fla/gallery.swf", "mcnab", "477", "389", "9", "#990500");
function loadGallery(){
	so.addVariable("xmlfile", "rss/gallery.xml");
	so.addVariable("path", "images/gallery/");
	so.write("featured");
}

function changedesc(description){
	document.getElementById("message").innerHTML = description;
}

function changeThumbs(one, two, three){
	document.getElementById("img1").innerHTML = '<a href="javascript:changePhoto(\'' + one + '\');" title="Change Photo"><img src="images/gallery/thumbs/'+ one + '" alt="Change Photo" /></a>';
	document.getElementById("img2").innerHTML = '<a href="javascript:changePhoto(\'' + two + '\');" title="Change Photo"><img src="images/gallery/thumbs/'+ two +'" alt="Change Photo" /></a>';
	document.getElementById("img3").innerHTML = '<a href="javascript:changePhoto(\'' + three + '\');" title="Change Photo"><img src="images/gallery/thumbs/'+ three +'" alt="Change Photo" /></a>';

}

function changePhoto(img){
		so.addVariable("xmlfile", "rss/gallery.xml");
		so.addVariable("path", "images/gallery/");
		so.addVariable("startPhoto", img);
		so.write("featured");
}