var elm;
$(document).ready(function(){
	var t;
	$(".btnExp").click(function(){
		$(this).parent().prev(".hidContent").slideToggle("slow");
		$(this).fadeOut("slow");
		$(this).next(".btnHide").fadeIn("slow");
		return false;
	});
	$(".btnHide").click(function(){
		$(this).parent().prev(".hidContent").slideToggle("slow");
		$(this).fadeOut("slow");
		$(this).prev(".btnExp").fadeIn("slow");
		return false;
	});
	$(".share").bind("mouseenter",function(){
		elm = $(this);
		t = setTimeout("sExp(elm)",600);
	}).bind("mouseleave",function(){
		clearTimeout(t);
		$(this).children(".share-panel").stop().fadeOut("slow");
	});
	$(".share-close").click(function(){
		$(this).parent().fadeOut("slow");
		return false;
	});
});
function sExp(el) {
	el.children(".share-panel").stop().fadeIn("slow");
}