
	var fl=false;
	$(document).ready(function() {

	var w_img=1680;
	var w,new_w, num;
	setWidth();
	w=new_w;
	setSize();
	function setWidth(){
		new_w=$(window).width();
	}
	function setSize(){
		m_left=~~((w-w_img)/2);
		if (fl) {m_left=m_left-300}
		$('#bgSlider').css({marginLeft:m_left});
	}
	setInterval(setNew,1);
	function setNew(){
		setWidth();
		if ((w!=new_w)||(fl)) {
			w=new_w;
			setSize();
		}
	}
})
