window.addEvent('domready', function(){
	links = $$('.a-site');
	toggles = $$('.rating');
	togs = {};
	links.each(function(el, idx) {
		togs[idx] = new Fx.Styles(toggles[idx], {duration:100, wait:false});
		el.addEvent('mouseenter', function(){ togs[idx].start({ 'bottom': 0 }); });
		el.addEvent('mouseleave', function(){ togs[idx].start({ 'bottom': -33 }); });
	});
	
	links2 = $$('.image_panel_action');
	toggles2 = $$('.image_panel_grand');
	togs2 = {};
	links2.each(function(el2, idx2) {
		togs2[idx2] = new Fx.Styles(toggles2[idx2], {duration:100, wait:false});
		el2.addEvent('mouseenter', function(){ togs2[idx2].start({ 'bottom': 0 }); });
		el2.addEvent('mouseleave', function(){ togs2[idx2].start({ 'bottom': -55 }); });
	});


});
