function Fosforo() {
	this.init();
}

Fosforo.prototype = {
	fosFlash : null,
	
	init : function() {
		//console.log('Fosforo Initialized');
		self = this;
		this.fosFlash  = swfobject.getObjectById("fosforoFlash");
	},
	
	changeMe : function(whatLand) {
		this.fosFlash.SetOutfit(whatLand);
		this.fosFlash.ChangeOutfit();
	},
	
	putGlassesOn : function() {
		this.fosFlash.PutGlasses();
	},
	
	takeGlassesOff : function() {
		this.fosFlash.TakeOffGlasses();
	},
	
	sayNY : function() {
		this.fosFlash.SayNY();
	},
	
	sayDF : function() {
		this.fosFlash.SayDF();
	}
};
