$(document).ready(function(){
	lastBlock = $("#sc-h9");
	maxWidth = 540;
	minWidth = 44;
	
	blocks = [$("#sc-h1"), $("#sc-h2"), $("#sc-h3"), $("#sc-h4"), $("#sc-h5"), $("#sc-h6"), $("#sc-h7"), $("#sc-h8"), $("#sc-h9")];
	pos = 8;
	sliderHomeId = undefined;
	
	$(".act").hover(
		function() {
			$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
			$(this).animate({width: maxWidth+"px"}, { queue:false, duration:400});
			lastBlock = this;
		}
	);
	resetTimer();
});
function resetTimer() {
	clearInterval(sliderHomeId);
	sliderHomeId = setInterval(slide_specialities, 6000);
}
function slide_specialities() {
	pos++;
	if (pos > 8) pos = 0;
	$(lastBlock).animate({width: minWidth+"px"}, { queue:false, duration:400 });
	$(blocks[pos]).animate({width: maxWidth+"px"}, { queue:false, duration:400});
	lastBlock = blocks[pos];
}
