var timer;
var num = Math.floor(Math.random()*6);
var posX = new Array(61,156,251,346,441,536);

$(function(){
	$('#bookmark').load('http://www.dee-okinawa.com/dee_rss/xml.php');
	$('#newsContents').load('http://www.dee-okinawa.com/dee_rss/xml2.php');    
	
	$('#marker').css('left',posX[num]);
	$('.listArea ul li').css('opacity',0.5);
	
	$('.pick_cont').eq(num).show();
	$('.listArea ul li').eq(num).css('opacity',1);
	
	$('.listArea ul li').mouseover(
	function(){
		var n = $('.listArea ul li').index(this);
		hoveract(n);
	});
	
	timer = setInterval("panel(num)",10000);
});

function panel(n){
	num = (num == 5 ) ? 0 : num + 1;
	$('.pick_cont').eq(n).hide();
	$('.listArea ul li').eq(n).animate({opacity:0.5});
	$('.listArea ul li').eq(num).animate({opacity:1});	
	$('#marker').animate({
		left:posX[num]
	});
	
	$('.pick_cont').eq(num).fadeIn('slow');
}

function hoveract(n){
	clearInterval(timer);
	
	if(n != num){
	$('.pick_cont').hide();
	$('.listArea ul li').stop().animate({opacity:0.5});
	$('.listArea ul li').eq(n).stop().animate({opacity:1});	
	$('#marker').stop().animate({
		left:posX[n]
	});
	
	$('.pick_cont').eq(n).fadeIn('slow');
	num = n;
	}
	
	timer = setInterval("panel(num)",10000);	
}




