var _c = _h = 0;
$(function(){
    $('#flash_play > a').click(function(){
        var i = $(this).attr('alt') - 1;
        clearInterval(_h);
        _c = i;
        play();
        change(i);        
    })
    $("#flash_pic img").hover(function(){clearInterval(_h)}, function(){play()});
    play();
})
function play()
{
    _h = setInterval("auto()", 3000);
}
function change(i)
{
    $('#flash_play > a').css('background-color','#fbccd4').eq(i).css('background-color','#f37491').blur();
    $("#flash_pic img").hide().eq(i).fadeIn('slow');
}
function auto()
{    
    _c = _c > 1 ? 0 : _c+1;
    change(_c);
}

