window.addEvent('domready', function() {
    	$$('.commerce_products a').addEvent('mouseover', function(e) {
		var elem = this.getElementsByTagName("div");
		elem[0].style.background = '#fdb302 url(fileadmin/template/img/bg_shop_item_top.jpg)';
		elem[1].style.background = '#fdb302 url(fileadmin/template/img/bg_shop_item_bottom.jpg)';
		elem[1].style.backgroundRepeat = 'no-repeat'
		elem[1].style.backgroundPosition = 'bottom';
	});
    	$$('.commerce_products a').addEvent('mouseout', function(e) {
		var elem = this.getElementsByTagName("div");
		elem[0].style.background = '#ffffff';
		elem[1].style.background = '#ffffff';
	});

});

