/**
 * @author Marcus
 */
if(typeof sIFR == "function"){
		sIFR.replaceElement("h1", named({sFlashSrc: "/images/helveticaneue.swf", sColor: "#000", sFlashVars: "offsetTop=5", nPaddingRight: 15}));
		sIFR.replaceElement("div.person h2", named({sFlashSrc: "/images/helveticaneue.swf", sColor: "#000", nPaddingRight: 15}));
		sIFR.replaceElement("div.person p.title", named({sFlashSrc: "/images/helveticaneue.swf", sFlashVars: "offsetTop=3",sColor: "#e20025", sCase: "upper", nPaddingRight: 15}));
};

$(document).ready(function() {
	$("img.hoverpuff").hover(
		function () {
			var image_name = this.src;
			this.src = image_name.replace("_out","_over");
		},
		function () {
			var image_name = this.src;
			this.src = image_name.replace("_over","_out");
		}
	);
});

