// sifr settings for this project
$(document).ready(function(){				
				
				$('h4').flash(
					{ 
						src: 'http://projectbuilders.artofphp.com/swf/KozukaGothicPro.swf',
						wmode: 'transparent',
						flashvars: { 
							css: [
								'* { color: #333333; }',
								'a { color: #333333; text-decoration: none; }',
								'a:hover { text-decoration: underline; }'
							].join(' ')
						}
					},
					{ version: 7 },
					function(htmlOptions) {
						htmlOptions.flashvars.txt = this.innerHTML;
						this.innerHTML = '<span>'+this.innerHTML+'</span>';
						var $alt = $(this.firstChild);
						htmlOptions.height = $alt.height();
						htmlOptions.width = $alt.width();
						$alt.addClass('alt');
						$(this)
							.addClass('flash-replaced')
							.prepend($.fn.flash.transform(htmlOptions));						
					}
				);
			});
