jQuery(document).ready( function(){
		jQuery('#newsSlider').loopedSlider({
		autoStart: 5000,
		slidespeed:600,
		containerClick: false
		});
		var index=1,playBg=false;
		var oldIndex=Math.floor(Math.random()*3);
		$(".frame1,.frame2,.frame3").css({"backgroundPosition":"-970px 0px"});
		$(".frame"+oldIndex).css({"backgroundPosition":"0px 0px"});
		$("#circleBut a:eq("+oldIndex+")").addClass("selected");
		$("#circleBut a").each(function(index1){
			$(this).bind("mouseover click",{t:index1},function(event){
				index=event.data.t;
				if(index==oldIndex) return;
				if(playBg) return false;
				playBg=true;
				$("#circleBut a").removeClass("selected");
				$(this).addClass("selected");
				$(".frame"+oldIndex).css({"backgroundPosition":"0px 0px"}).animate({"backgroundPosition":"-970px 0px"},1000);
				$(".frame"+index).css({"backgroundPosition":"970px 0px"}).animate({"backgroundPosition":"0px 0px"},1000,function(){
					playBg=false;
				});
				oldIndex=index;
			});
		});
});
