if ($.browser.msie) {
	$('input:checkbox').click(function() { this.blur(); this.focus(); });

	function correctPosition(oElement,oPos,oWhich) {
		while( oElement.offsetParent ) {
	oPos -= oElement['offset'+oWhich];
	oElement = oElement.offsetParent;
	}
	oPos += document.documentElement['scroll'+oWhich] ? document.documentElement['scroll'+oWhich] : document.body['scroll'+oWhich];
	return oPos;
	}
	document.writeln( '<style type="text\/css">' );
	//use document.writeln to put all CSS declarations in here, surrounded by " quotes
	document.writeln( ".bdy01 { background-position: expression( correctPosition(this,0,'Left')+'px '+correctPosition(this,0,'Top')+'px'); }" );
	document.writeln( '<\/style>' );

	$(document).pngFix();
}

