$(document).ready(function() {
	// For some reason, Safari is using this div's left margin value for its right margin,
	// and setting the right margin only reduces the erroneous right margin by the specified
	// value. A very strange bug indeed...
	if ($.browser.safari) { $(".right_group").css("margin-right", "-396px"); }
});


// IE PNG FIX
if (document.all && /MSIE (5\.5|6)/.test(navigator.userAgent) &&
 document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
{
 document.styleSheets[0].addRule('*', 'behavior: url(css/ie_fixes/iepngfix_v2/iepngfix.htc)');
 document.styleSheets[0].addRule('img', 'behavior: url(css/ie_fixes/iepngfix_v2/iepngfix.htc)');
 document.styleSheets[0].addRule('div', 'behavior: url(css/ie_fixes/iepngfix_v2/iepngfix.htc)');
}

