/**
 * @author 	goker.cebeci :: http://goker.cebeci.name
 */
var ffu = new Class({
	initialize: function(a){
		new Swiff('lib/ffu/ffu.swf', {
		    id: 'ffu',
		    width: (a['width']?a['width']:450),
		    height: '25',
		    container: a['ID'],
		    params: {
		        wmode: 'opaque',
				allowFullScreen: 'false',
				allowScriptAccess:'sameDomain',
				scale: 'noscale',
				salign: 'left'
		    },
		    vars: {
		       ID: a['ID'],
		       label: a['label'],
		       type: a['type'],
		       url: a['url']
		    }
		});
	}
});