// JavaScript Document

/* start code of this page */
$(document).ready(function() {
    
	$('#newsNav').jScrollHorizontalPane({scrollbarHeight:10, scrollbarMargin:0});
	$('#newsRightInfoContent').jScrollPane();
	$('#newsLeftInfoContent').cycle({timeout:4000});
	
	$('#newsItemList li a').bind('click',function(e)
					{
						$('#newsNav')[0].scrollTo((e.pageX - $("#newsItemList").offset().left) - 350);
						
						return false;
					}
				);
				
	if ($.browser.msie)
	{
		setScrollPane();
	}
});

function setScrollPane()
{
	$('#newsRightInfoContent').jScrollPane({scrollbarHeight:10, scrollbarMargin:0});
	
	$('#newsLeftInfoContent').cycle({timeout:4000});
	
	return;
};


