var General = {
	init: function(){
		this.preparePng();
		this.prepareFlash();
	},
	preparePng: function(){
		if( typeof( ddpngfix ) !== 'undefined' ){
			$( '.imgslider, .prev, .next' ).each( function(){
				ddpngfix.fixPng( this );					
			} );			
		}
	},
	prepareFlash: function(){
		//FlashUtil.embed( 'path', 'container' );	
	}
}
$( 'document' ).ready( function(){
	General.init();
} );
