/**
 * @author Claudio Cesar Sanchez Tejeda
 */

$(document).bind('click', function(e) 
{
	e.stopPropagation();
	e.preventDefault(); 
	return false; 
});          
