jQuery(function($){
    $("#btnFeedback").hover(function() {
	    $(this).css('cursor', 'pointer');
	}, function() {
	    $(this).css('cursor', 'normal');
	});
	
	var ele;
	
	$("#btnFeedback").click(function() {
	    ele = $("#formFeedback").lightbox_me({
	        centered: true
	    });
	});
	
	fechaOverlay = function() {
	    ele.trigger('close');
	}
});

