$(document).ready(function(){
	
	
	$('.panel-content').hide();
	$(".elem_hover").hover(function(){
  	 $(this).css('cursor','pointer').find('.panel-logo').hide().next().show();
	 },function(){
	  $(this).find('.panel-logo').show().next().hide();
	 });
	
	
	});
