﻿var $j = jQuery.noConflict();

$j(function() {
	$j('td[class^="Warning_Main"]').css('opacity', 0.27);
	$j('td.Clear_White').css('opacity', 0.6);
	$j('.Box_Main,.Box_LeftTop,.Box_Top,.Box_RightTop,.Box_Left,.Box_Right,.Box_LeftBot,.Box_Bot,.Box_RightBot').css('opacity', 0.7);
	$j('td.Box_Surround').css('opacity', 0.3);
	$j.ifixpng('/News/themes/DangerousFaith/images/clear.gif');
	$j('.FixPNG').ifixpng();
	$j('.Box_Span').each(function() { SetBoxControlDimensions(this); });
});

function SetBoxControlDimensions(objDomElement) {
	var objBoxContent = $j(objDomElement).parents('.Box_Wrapper').find('.Box_Content,.Box_Content_Special');
	if (objBoxContent.attr('class').toLowerCase() == 'box_content_special') {
		$j(objDomElement).height(objBoxContent.height() - 54);
		$j(objDomElement).width(objBoxContent.width() - 38);
	}
	else {
		$j(objDomElement).height(objBoxContent.height() - 28);
		$j(objDomElement).width(objBoxContent.width() - 28);
	}
}