 $(function() {

	    $("#img-callback").show();

            $("#img-callback").click(function() {

                $("#bodyCache")
                .hide()
                .css({
                    "width": document.body.offsetWidth,
                    "height": document.body.scrollHeight,
                    "opacity": "0"
                })
                .animate({
                    opacity: 0.8
                })
                .show();

                $("#lightBoxCallBack")
                .fadeIn("fast")
                .css({
                    "z-index": "1"/*, "left": ((document.body.clientWidth - $(this).width() - $("#container").width()) / 2) + 60*/
                })
                .load("Webcallback.aspx", function() { init(); });


            });

        });

