$(document).ready(function() { 
	
	
	//on click show popup
	$("#share").click(function () {
	$("#share_popup").show();
	return false;
	});
	
	//close button
	$("#close_button a").click(function () {
	$("#share_popup").hide();
	return false;
	});
	

});

