var et_tout = null;
var et_tout_val = 10000;
$(document).ready(function(){
	$('#eventickerwrap li').hover(function(){
		var id = $(this).addClass('hovered').attr('id').split('_');
		$('#im_'+id[1]).show();
		$('#bx_'+id[1]).show();
		$(this).siblings().each(function(){
			var id = $(this).removeClass('hovered').attr('id').split('_');
			$('#im_'+id[1]).hide();
			$('#bx_'+id[1]).hide();
		});
		window.clearTimeout(et_tout);
	}, function(){
		et_tout = window.setTimeout('switch_et()', et_tout_val);
	}
	);
	switch_et();
});

function switch_et(){
	$('#eventickerwrap li:eq('+Math.floor(Math.random()*4)+')').mouseover();
	et_tout = window.setTimeout('switch_et()', et_tout_val);
}

