<!--
document.ns = navigator.appName == 'Microsoft Internet Explorer'
set_y = 100;
distance = 0;
move_div();
function doCouplet() {
	if ((document.body.offsetWidth > 800) && document.ns) {
		couplet_left.style.visibility = 'visible';
		couplet_right.style.visibility = 'visible';
		couplet_left.style.left = 0;
		couplet_right.style.right = 0;
	}
}
function move_div() {
	var new_y;
	new_y = document.body.scrollTop;
	distance = new_y - set_y;
	if (set_y != new_y) set_y += (distance / 10);
	document.all['couplet_left'].style.top = set_y;
	document.all['couplet_right'].style.top = set_y;
	setInterval('move_div()');
}
try {
	aryADSeq.push('doCouplet()');
} catch(e) {
	doCouplet();
}
// -->