﻿function iePngFixInitialization() {
	iePngFix('#hd-wrap');
	iePngFix('#bd-wrap');
	iePngFix('#ft-wrap');
	iePngFix('#BannerLogoContainer');
	iePngFix('.user-content');
	iePngFix('.bg');
}

function iePngFix(context) {
	$(context).supersleight({ shim: blankGif });
}

function initTooltips() {
	$('.tip-trigger').cluetip({
		local: true,
		cursor: 'pointer',
		dropShadow: false,
		leftOffset: 5,
		sticky: true,
		closePosition: 'title',
		width: '476px',
		hoverIntent: {
			sensitivity: 5,
			interval: 75,
			timeout: 0
		}
	});
	$(document).trigger('hideCluetip');
}

Sys.Application.add_load(initTooltips);

