//replace headings
function replaceHeadings(){
	$("h1").each(function (){
		content = $(this).text();
		$(this).flashembed({
			//flashembed vars
			src: "/assets/flash/heading.swf",
			version: [9, 0], //required to prevent replacement on mobiles
			wmode: "transparent",
			width: "100%",
			height: "100%",
			scale: "noscale",
			salign: "lt" }, {
			//vars to flash file
			headingText: encodeURIComponent(content),
			headingColor:"0xAA1D1B",
			headingSize: 30,
			headingLetterSpacing: 0,
			headingOffsetX: -3,
			headingOffsetY: 0 });
	});
	$("h2").each(function (){
		content = $(this).text();
		$(this).flashembed({
			//flashembed vars
			src: "/assets/flash/heading.swf",
			version: [9, 0], //required to prevent replacement on mobiles
			wmode: "transparent",
			width: "100%",
			height: "100%",
			scale: "noscale",
			salign: "lt" }, {
			//vars to flash file
			headingText: encodeURIComponent(content),
			headingColor: "0xAA1D1B",
			headingSize: 20,
			headingLetterSpacing: 0,
			headingOffsetX: -2,
			headingOffsetY: 0 });
	});
}

//document.ready
$(document).ready(function(){
	replaceHeadings();
});