window.addEvent('domready',function() {
	$$('div.productBox').addEvent('mouseover',function() {
		this.addClass('productBox_hover');
	});
	$$('div.productBox').addEvent('mouseout',function() {
		this.removeClass('productBox_hover');
	});
	$$('div.boxTopseller').addEvent('mouseover',function() {
		this.addClass('boxTopseller_hover');
	});
	$$('div.boxTopseller').addEvent('mouseout',function() {
		remove_class = true;
		$each($$('div.productBox'),function(object,index) {
			if(object.hasClass('productBox_hover')) {
				remove_class = false;
			}
		});
		if(remove_class == true) {
			this.removeClass('boxTopseller_hover');
		}
	});
});
