var App = {

	correctFlashPlayer: '9.0.115.0',
    
	init: function() {
		this.setFonts();
		this.fixIE6();
    },
	
	setFonts: function() {
		Cufon.replace('h1, h3, h4', { fontFamily: 'Norton', hover: true });
		Cufon.replace('h2', { fontFamily: 'Freestyle', hover: true });
	},

	
	
        fixIE6: function() {
             if ( Browser.Engine.trident4  ) {
                 this.pngFix();
             }        
         },
     
     pngFix: function() {
             DD_belatedPNG.fix('.info, .features, #leftNav, #leftNavBottom, #intro, #receptSelector, img');
         }

}

