// 鴻御夕頭態算重云
var _c = _h = 0;
$(function(){
    $('#play > a').click(function(){
        var i = $(this).attr('alt') - 0;
        clearInterval(_h);
        _c = i;
        play();
        change(i);        
    })
    $("#pic img").hover(function(){clearInterval(_h)}, function(){play()});
    play();
})
function play()
{
    _h = setInterval("auto()", 3000);
}
function change(i)
{
    $('#play > a').css('background-color','#E8FCEB').eq(i).css('background-color','#C6FF5E').blur();
    $("#pic img").hide().eq(i).fadeIn('slow');
}
function auto()
{    
    _c = _c >0 ? 0 : _c + 1;
    change(_c);
}
function go_to_url(url){
	this.location.href=url;
}
