window.addEvent("domready",function()
	{

	var theButtons = $$('.btn');

	theButtons.addEvent('mouseover',function(e){
		new Event(e).stop();
	 	var button = this.getProperty('rel');
	 	// console.log(button);
	 	if($(button))
	 	{
	 	//$(button).setStyle('left', this.getPosition().x+2);
	 	$(button).setStyle('top', this.getPosition().y-105);
	 	$(button).setStyle('display','block');
	 	}
	});

	theButtons.addEvent('mouseout',function(e){
		new Event(e).stop();
	 	var button = this.getProperty('rel');
	 	//$(button).setStyle('left', this.getPosition().x+2);
	 	if($(button))
	 	{
	 	$(button).setStyle('top', this.getPosition().y-105);
	 	$(button).setStyle('display','none');
	 	}
	});

});
