<!-- // custom for bluedragonfly
OnLoad += "rotateBDF();";

function rotateBDF() {
	if ($('BDFrotate')) {
		var matches = $('BDFrotate').src.match(/(\w+)(\/)(\d+)(\.jpg)$/i);
		var section = matches[1]; // section
		var imageNum = parseInt(matches[3]); // image number
		
		imageNum++;
		if (imageNum > 8 && section != "about") { imageNum = 1; }
		if (imageNum > 9 && section == "about") { imageNum = 1; }
		// about 1-9 // contact 1-8 // home 1-8
		
		$('BDFrotate').src = "/images/custom/bdf/" + section + "/" + imageNum + ".jpg";
		setTimeout("rotateBDF()", 2500);
	}
	return true;
}
//-->