			$(document).ready(function(){
				$(".zebra li:nth-child(even)").addClass("even");
				
				$("a.fancybox").fancybox({"hideOnContentClick": 1, "overlayShow": 1, "overlayOpacity": 0.73});

			    $('h1').flash(
			        { 
			            src: '/js/fontin.swf', 
			            flashvars: { 
			                css: [
			                    '* { color: #737373;}',
			                    'a { color: #737373; text-decoration: none; }',
			                    'a:hover { color: #3a593e; }'
			                ].join(' ')
			            }
			        },
			        { version: 7 },
			        function(htmlOptions) {
			            htmlOptions.flashvars.txt = this.innerHTML;
			            this.innerHTML = '<div>'+this.innerHTML+'</div>';
			            var $alt = $(this.firstChild);
			            htmlOptions.height = $alt.height();
			            htmlOptions.width = $alt.width();
			            $alt.addClass('alt');
			            $(this)
			                .addClass('flash-replaced')
			                .prepend($.fn.flash.transform(htmlOptions));						
			        }
			    );
				
				$('h2').flash(
			        { 
			            src: '/js/fontin.swf', 
			            flashvars: { 
			                css: [
			                    '* { color: #7e6b4e;}',
			                    'a { color: #7e6b4e; text-decoration: none; }',
			                    'a:hover { color: #3a593e; }'
			                ].join(' ')
			            }
			        },
			        { version: 7 },
			        function(htmlOptions) {
			            htmlOptions.flashvars.txt = this.innerHTML;
			            this.innerHTML = '<div>'+this.innerHTML+'</div>';
			            var $alt = $(this.firstChild);
			            htmlOptions.height = $alt.height();
			            htmlOptions.width = $alt.width();
			            $alt.addClass('alt');
			            $(this)
			                .addClass('flash-replaced')
			                .prepend($.fn.flash.transform(htmlOptions));						
			        }
			    );
			});
