$(document).ready(function() {
			$('.over').hover(function(){
				$(this).find('.fimg_bg').animate({top:'135px', opacity: 0},{queue:false,duration:500});
				$(this).find('.inner_a').animate({marginTop:'1px', opacity: 1.0},{queue:false,duration:500});
			}, function(){
				$(this).find('.fimg_bg').animate({top:'0px', opacity: 1.0},{queue:false,duration:500});
				$(this).find('.inner_a').animate({marginTop:'-20px', opacity: 0},{queue:false,duration:500});
			});
		});
