window.addEvent('domready', function(){
	var smallreviews = $$('.small_reviews a');
	smallreviews.each(function(smallreview) {
		
		var smallreview_spans = $$(smallreview.childNodes);
		
		smallreview_spans.each(function(smallreview_span) {
			var smallreview_span_fx = new Fx.Styles(smallreview_span, {duration:200, wait:false});
		
			smallreview.addEvent('mouseenter', function(){
				smallreview_span_fx.start({
					padding:'5px 10px 25px 10px',
					margin:'45px 0 0 0'
				});
			});
		
			smallreview.addEvent('mouseleave', function(){
				smallreview_span_fx.start({
					padding:'5px 10px 0 10px',
					margin:'70px 0 0 0'
				});
			});
		});
	});
	
	var big_review_fx = new Fx.Styles($E('#review_big a .container'), {duration:200, wait:false});
	
	$E('#review_big a').addEvent('mouseenter', function(){
		big_review_fx.start({
			padding:'10px 10px 70px 10px',
			margin:'95px 0 0 0'
		});
	});

	$E('#review_big a').addEvent('mouseleave', function(){
		big_review_fx.start({
			padding:'10px 10px 0 10px',
			margin:'165px 0 0 0'
		});
	});
});