﻿//$(function() {
//    $('#teste').click(function(e) {
//        //        //Obtem a medida do popup
//        //        var height = ('#testeshow').height
//        //        var width = ('#testeshow').width
//        //        leftVal=e.pageX-(width/2)+"px"
//        //        topVal = e.pageY - (height / 2) + "px"
//        //        $('#testeshow').css({left:leftVal,top:topVal}).show 
//        $('#testeshow').show;
//    });
//});


//$(function() {
//    $('#teste').click(function(e) {
//        //getting height and width of the message box
//        var height = $('#testeshow').height();
//        var width = $('#testeshow').width();
//        //calculating offset for displaying popup message
//        leftVal = e.pageX - (width / 16) + "px";
//        topVal = e.pageY - (height / 16) + "px";
//        //show the popup message and hide with fading effect
//        $('#testeshow').css({ left: leftVal, top: topVal }).fadeIn('slow');
//    });
//    $('#fechar').click(function(e) {
//        e.preventDefault();
//        $('#testeshow').fadeOut('slow');
//    });
//    $(div).not('#teste').click(function(e) {
//        $('#testeshow').fadeOut('slow');
//    });
//}); 