var cuselParams = {
	changedEl:"select",
	visRows:10,
	scrollArrows:true
}
cuSel(cuselParams);
$(function(){
	$('input.date').datepicker();
	$('.item ul.images li').click(function(){
		id = '#image'+$(this).attr('id').replace('thumb','');
		$('.item ul.images li.active').find('a').css('background-position', '0 -241px');	// <-- ie6 fix
		$('.item ul.images li').removeClass('active');
		$('.item ul.images li a').attr('style','');											// <-- ie6 fix
		$(this).addClass('active');
		$('.item .image a').hide();
		$(id).show();
		return false;
	});
	$('.item .image a').lightBox();
	if( $('#rotator li').length > 1 ) {
		interValStats = setInterval(function(){
			var next = 0;
			var next = parseInt($('#rotator li.current').attr('rel'));
			next = next == $('#rotator li').length ? 1 : next+1;
			$('#rotator li.current').removeClass('current');
			$('#rotator li[rel="'+next+'"]').addClass('current');
			$('#section > div.image').html($('#rotator li.current .img').html());
			$('#section div.red-block .title').html($('#rotator li.current .title').html());
			$('#section div.red-block p').html($('#rotator li.current .content').html());
		}, 5000);
	}
});
