$(document).ready(function () {
	if ( isiOS() ) {
		replaceHeadings(".headsifr");
		replaceHeadings(".headartsifr");
		replaceVideoLink1();
	} else {
		//<![CDATA[
		if(typeof sIFR == "function"){
			sIFR.replaceElement(named({sSelector: ".headsifr", sFlashSrc: "/Scripts/sIFR/myriadpro.swf", sWmode: 'transparent', sColor: "#20436f"}));
			sIFR.replaceElement(named({sSelector: ".headartsifr", sFlashSrc: "/Scripts/sIFR/myriadpro.swf", sWmode: 'transparent', sColor: "#20436f"}));
			sIFR.replaceElement(named({sSelector: ".headsifrcenter", sFlashSrc: "/Scripts/sIFR/myriadpro.swf", sWmode: 'transparent', sColor: "#20436f", sFlashVars: "textalign=center"}));
			sIFR.replaceElement(named({sSelector: ".textsifr", sFlashSrc: "/Scripts/sIFR/myriadpro.swf", sWmode: 'transparent', sColor: "#000000"}));
			sIFR();
		};
		//]]>
	}
});

function isiOS(){
	var isiPad = navigator.userAgent.match(/iPad/i) != null;
	var isiPhone = navigator.userAgent.match(/iPhone/i) != null;
    return (isiPad || isiPhone);
}

function replaceHeadings(selector) {
	$(selector).each(function(idx, elem){
		var imgid = $(this).attr('imgid');
		if ( imgid != undefined ) {
			if ( $(this).children().first().is("a") ) {
				var txt = $(this).children().first().html();
				var link = $(this).children().first().attr("href");
				var targ = $(this).children().first().attr("target");
				if ( targ == undefined ) {
					targ = "_self";
				}
				$(this).replaceWith('<a href="'+link+'" target="'+targ+'"><img src="/headings/'+imgid+'.png" alt="'+txt+'" title="'+txt+'"/></a>');
			} else {
				var txt = $(this).html();
				$(this).replaceWith('<img src="/headings/'+imgid+'.png" alt="'+txt+'" title="'+txt+'"/>');
			}
		}
	});
}

function replaceVideoLink1() {
	$('#promovideo').removeAttr("onclick");
	$('#promovideo').wrap('<a href="http://youtu.be/TnaKC7SGF70" target="_blank" />');
}

function replaceCollageLink() {
	$('#photoproj').removeAttr("onclick");
	$('#photoproj').attr('href', 'http://www.youtube.com/watch?v=Y14IiAVUFO8');
	$('#photoproj').attr('target', '_blank');
}
