$(document).ready(function() {
    $('#banner_rotator').cycle({
		fx: 'fade'
	});
	
    $("#top-products div")
    .css("opacity", 0.7)
    .hover(
        function() { $(this).fadeTo("fast", 1.0, function() {
        	$('.name', this).animate({bottom: -$('.name', this).height()}, 300);
        }); }, 
        function() { $(this).fadeTo("fast", 0.7, function() {
        	$('.name', this).animate({bottom: 0}, 300);
        }); }
    );
	
});
