var _c = _h = 0;
$(function(){
	$('.list-text > p:first').addClass('highlight');
	 $(".focus-image img:not(:first)").hide();
    $('.list-text > p').mouseover(function(){
        var i = $(this).attr('title') - 1;
        clearInterval(_h);
        _c = i;
        play();
        change(i);  
	
    })
    $(".focus-image img").hover(function(){
		clearInterval(_h)
	}, 
	function(){
		play();
	});
    play();
})
function play()
{
    _h = setInterval("auto()", 4000);
}
function change(i)
{
    $('.list-text > p').removeClass('highlight').eq(i).addClass('highlight').blur();
    $(".focus-image img").hide().eq(i).fadeIn(200);
}
function auto()
{    
    _c = _c > 2 ? 0 : _c + 1;
    change(_c);
}