if( !General ) var General = {};
General.subscript = {
	init: function(){
		this.preparePng();
		this.prepareFlash();
	},
	preparePng: function(){
		if( typeof( ddpngfix ) !== 'undefined' ){
			ddpngfix.fix( '.png' );		
		}
	},
	prepareFlash: function(){
		if( General.tools.useFlash() ){
			General.tools.embedFlash( 'flash/Net4Mobility.swf', 'main-container', '100%', '100%' );
		}
	}
}
$( 'document' ).ready( function(){
	General.subscript.init();
} );

