$(document).ready(function(){
		$(".showhide").hide();
		
		$(".link-showhide").mouseover(function(){
			$(this).parent().find(".showhide").show();
		});
		
		$(".link-showhide").mouseout(function(){
			$(this).parent().find(".showhide").hide();
		});
		
		$(".showhide").mouseover(function(){
			$(this).show();
		});
		
		$(".showhide").mouseout(function(){
			$(this).hide();
		});
	});