
var cPage = function() {
	this.init = function() {

		if (typeof $.ifixpng != 'undefined') $('*').ifixpng(ROOT + 'themes/images/blank.gif');
		
		$('.programs span').tooltip({
			bodyHandler: function() {
				return '<img src="' + $(this).attr('rel') + '"/>' + $(this).attr('tooltipText');
			}
		});

	};

	this.block = function() {
		$('#systemWorking').fadeIn();
	};
	this.unblock = function() {
		$('#systemWorking').fadeOut();
	};
	this.throbber = function(id) {
		$(id).html('<center style="padding-top: 50px;"><img src="' + ROOT + 'themes/images/cms/throbber.gif"/></center>');
	}

};
var PAGE = new cPage();

$(function(){
	PAGE.init();
});