﻿$(document).ready(function() {

	$("#share_btn").not('.notog').toggle(function(){
			$('#share').animate({width:288}, {duration: 1000, easing: "easeOutElastic"});
			$('#share_content').show() .removeClass('hidden');
	},function(){
			$('#share').animate({width:68}, {duration: 1000, easing: "easeOutElastic"});
			$('#share_content').hide() .addClass('hidden');
				});
});

