 $('.slide_show').hover(function(){	
	$(this).find('.bi_info').slideToggle();
 });
 $('.bi_info').hover(function(){
	$(this).show();
 });
