$(function() {
	$('#bootAnimation img').each(function() {
		if ($.nodeName(this, 'img')) {
			var imgSrc = $(this).attr('src');
			if (imgSrc.substr(imgSrc.length-4) === '.png' || imgSrc.substr(imgSrc.length-4) === '.PNG') {
				$(this).css('filter', "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled='true',sizingMethod='crop',src='" + imgSrc + "')");
			}
		}
	});
	
	function f(e) { $($(e).fadeIn().parent().find('li:visible').not(e)).fadeOut(); }
	$('.h-trigger').hover(function() { f($('#i-' + $(this).parent().attr('id'))) });
});
