$(document).ready(function(){
	$('.ft_box').hover(function(){
		$(".roll", this).stop().animate({top:'+80px'},{queue:false,duration:300});
	}, function() {
		$(".roll", this).stop().animate({top:'0px'},{queue:false,duration:300});
	});
	
	if(jQuery.browser.opera){
		alert('opera');
	}
	
});
