var float = {
	delay: 1000,
	onOver: function(obj)
	{
		$(obj).animate({
	        right: "0"
	     }, {queue: false}, this.delay );
	},
	
	onOut: function(obj)
	{
		$(obj).animate({
	        right: "-154"
	     }, {queue: false}, this.delay );
	}
}