jQuery(function(){  
    // Lightbox
    self.defaultLightBoxId = '#lightBoxPagSeguro';
   
    self.abrirLightBox = function()
    {
    	// START - SIMPLE MODAL JQUERY	
    	jQuery('.window .close, #mask').click(function (e) {
    		jQuery('.window').fadeOut('normal', function() {
    			jQuery('#mask').fadeOut('normal');
    		});
    		e.preventDefault();
    	});		


        var id = defaultLightBoxId;
        var maskHeight = jQuery(document).height();
        var maskWidth = jQuery(window).width();

        jQuery('#mask').css({
           'width':maskWidth,
           'height':maskHeight,
           'background' : '#000',
           'opacity' : 0.8,
           'cursor' : 'pointer'
        });


        jQuery('#mask').fadeIn();

        //Get the window height and width
        var winH = jQuery(window).height();
        var winW = jQuery(window).width();

        jQuery(id).css('top',  winH/2-jQuery(id).height()/2);
        jQuery(id).css('left', winW/2-jQuery(id).width()/2);

        jQuery(id).fadeIn(2000);
    }

})

function fechaLightBox()
{
	jQuery('.window').fadeOut('normal', function() {
		jQuery('#mask').fadeOut('normal');
	});
}
