jQuery(document).ready(function() {
    
	$('.show_popup').live('click', function(){

		// $('html, body').animate({scrollTop:$("body").attr("scrollHeight") }, 'slow');
		$('.popup').hide();  
		var height = $(this).height();
		var width = $(this).width();
		var pos = $(this).offset();
		$(this).next('.popup')
		.css({"left": (pos.left+width+5) + "px", "top": pos.top+height+2 + "px" })
		.show();

	});

	$('body').click(function() {
		$('.popup').hide();
	});

});
