
var theInt = null;
var curclicked = 0;

$(function(){
	$('#transparence').css('opacity','0.8');
	$('#service').css('opacity','0.7');
	$('#pic_list img').css({'opacity':'1'});
	//$('#pic_list img:eq(0)').css({'top':'10','opacity':'1'});
	$('#pic_list a').click(function(){return false});
	t(0);
	$('#pic_list img').mouseover(function(){
		if($('#this_pic').attr('src') == $(this).attr('thsrc')) return;
		if(!$(this).is(':animated')){
			t($('#pic_list img').index($(this)));
		}
	})
})

t = function(i){
	clearInterval(theInt);
	if( typeof i != 'undefined' )
	curclicked = i;
		$('#this_pic').fadeOut(0).fadeIn(500).attr('src',$('#pic_list img').eq(i).attr('thsrc'));
		$('#this_a').attr('href',$('#pic_list img').eq(i).parents('a').attr('href'));
		$('#this_a').attr('title',$('#pic_list img').eq(i).parents('a').attr('title'));
		$('#pic_list img').eq(i).parents('li').nextAll('li').find('img').animate({top:4,opacity:1},500);
		$('#pic_list img').eq(i).parents('li').prevAll('li').find('img').animate({top:4,opacity:1},500);
		$('#pic_list img').eq(i).animate({top:-3},500).css('opacity','1');
		
	theInt = setInterval(function (){
		i++;
		if (i > $('#pic_list img').length - 1) {i = 0};
		$('#this_pic').fadeOut(0).fadeIn(500).attr('src',$('#pic_list img').eq(i).attr('thsrc'));
		$('#this_a').attr('href',$('#pic_list img').eq(i).parents('a').attr('href'));
		$('#this_a').attr('title',$('#pic_list img').eq(i).parents('a').attr('title'));
		$('#pic_list img').eq(i).parents('li').nextAll('li').find('img').animate({top:4,opacity:1},500);
		$('#pic_list img').eq(i).parents('li').prevAll('li').find('img').animate({top:4,opacity:1},500);
		$('#pic_list img').eq(i).animate({top:-3},500).css('opacity','1');
	},3000)
}

