if( !General ) var General = {};

General.subscript = {
	init: function(){
		this.preparePng();
		this.prepareFlash();
	},
	preparePng: function(){
		if( typeof( ddpngfix ) !== 'undefined' ){
			$( 'img[src$=.png]:not(.opaque), #footer, #page-container, #content-holder-top, #content-holder-bottom, #content-holder' ).each( function(){
				ddpngfix.fixPng( this );					
			} );			
		}
	},
	prepareFlash: function(){
		//General.tools.embedFlash( '/flash/filename.swf', 'main-container', '100%', '100%' );
	}
}
$( 'document' ).ready( function(){
	General.subscript.init();
} );
