$(document).ready(function(){
    $("a.viewall_link").click(
	function(e){
        //getting height and width of the box
        var height = $('#bubbles').height();
        var width = $('#bubbles').width();
        //calculating offset for displaying popup message
        leftVal = e.pageX - ((width / 2) + 180) + "px";
        topVal = e.pageY - ((height / 2) + 148) + "px";
        //show the popup message
        $(".viewall_container").css({left:leftVal,top:topVal}).show();
    }),
    
	$("#bubbles_close").click(
		function () {
		$("#bubbles").hide();
});


});

