window.addEvent('domready', function() {
	var flagtips = new Tips($$('.smallflag,.vote'), {
		showDelay: 100,
		hideDelay: 250,
		fixed: true
	});
	$$('.buy_div').each(function(el){
		el.addEvent('mouseenter',function() {
			this.getElement('div').style.display='block';
		});
		el.addEvent('mouseleave',function() {
			this.getElement('div').style.display='none';
		});
	});
});