$(document).ready( function(){
	$('.corners').corners("10px");
});

	
// CHANGE BLOCKS
$(document).everyTime(4000, function(i) 
{ 
	change_blocks(1, 4);
	
	$(this).oneTime(800, "hide", function() {
		change_blocks(2, 5);
	});
	
	$(this).oneTime(1600, "hide", function() {
		change_blocks(3, 6);
	});
	
});

function change_blocks(from, to)
{
	from_data = $(".block_" + from + " > a.item").html();
	to_data = $(".block_" + to + " > a.item").html();
	
	$(".block_" + from + " > a.item").fadeOut("slow", function ()
	{
		$(".block_" + from + " > a.item").html(to_data);
		$(".block_" + from + " > a.item").fadeIn("slow");
	});
	$(".block_" + to + " > a.item").html(from_data);
	
}