function ifr(nod)
{
	if (nod == undefined) nod = 'h1';
	$(nod).each(
		function(i){
			$(this).flashembed
			(
		        { 
					src: 'http://www.saffrolla.com/wp-content/themes/saffrolla/swfs/inlinefont.swf', 
					width: '100%',
					height: 30,
					bgcolor: '#000000'
				},{
					headline:$(this).html()
				}
			);
			$(this).wrapInner( "<div class='flash-replaced'></div>" );
			$(this).attr( 'alt', $(this).html() );
		}
	);
};

var tb_pathToImage = "http://www.saffrolla.com/wp-content/themes/saffrolla2/img/loader.gif";

$(document).ready(function(){
	ifr('h1');
	ifr('#checkyourcontents h2');
	ifr('#shop h2');
	ifr('h2.widgettitle');
	$("#news a[@href*=/uploads/]").addClass("thickbox");
	// reset thickbox
	//tb_init('a.thickbox');//pass where to apply thickbox
	//imgLoader = new Image();// preload image
	//imgLoader.src = tb_pathToImage;
});
