jQuery.extend({
	gcTooltips: function () {
		jQuery('head').append('<style type="text/css">#tooltip { display:none;padding:20px;max-width:50%;background:#000000;  }</style>');
		jQuery('[title]').Tooltip({showURL: false, showBody: false});
	}
});

jQuery(document).ready(function () {
	jQuery.gcTooltips();
});
