<!--
if (!window.opera) {
	try {
	  document.execCommand("BackgroundImageCache", false, true);
	} catch(err) {}
}

function newsCount() {
	nWidth = parseInt($('#btm_pix').width()/137);
	nb1 = $('#btm_pix li').length;
	nRes1 = (nWidth-nb1>=0) ? 0 : (nb1-nWidth)*137;
	nCur1 = 0;
	$('#btm_pix_right').click(function(){
		if (nCur1<nRes1) {
			nCur1 = nCur1 + 137;
			$('#btm_pix_container').animate({marginLeft:'-'+nCur1+'px'}, 250);
		}
	return false;
	});
	$('#btm_pix_left').click(function(){
		if (nCur1>0) {
			nCur1 = nCur1 - 137;
			$('#btm_pix_container').animate({marginLeft:'-'+nCur1+'px'}, 250);
		}
	return false;
	});
}

$(document).ready(
	function() {
		$('#schedule tr:even').css('background','#e4e5d8');
		if(typeof $('#person_text').columnize=='function') {
			$('#person_text').columnize({ columns: 2, buildOnce: true });
			$('div.column').wrapInner('<div class="column_in" />');
		}
		newsCount();
	}
);

$(function() {

  $('.lightbox').lightbox();


});


// -->