$(document).ready(function(){
	
	// Collective Scroll
	
	collective_animating1 = false;
	collective_animating2 = false;
	
	$("a#collective_next").click(function(){
		if( collective_animating1 || collective_animating2 ){
			return false;
		}
		
		collective_animating1 = true;
		collective_animating2 = true;
		
		$("ul#collective-row2 li:first").clone().appendTo("ul#collective-row1");
		
		$("ul#collective-row1").animate({left: "-192px"}, 400, "swing", function(){
			$("ul#collective-row1").css("left", "0").children("li:first").appendTo("ul#collective-row2");
			collective_animating1 = false;
		});
		
		$("ul#collective-row2").animate({left: "-192px"}, 400, "swing", function(){
			$("ul#collective-row2").css("left", "0").children("li:first").remove();
			collective_animating2 = false;
		});
		
		return false;
	});
	
	// Collective Hover
	
	$("ul.collective-row a").live("mouseover", function(){
		$(this).children("span").stop().animate({"bottom": "0"}, 200, "swing");
	});
	
	$("ul.collective-row a").live("mouseout", function(){
		$(this).children("span").stop().animate({"bottom": "-30px"}, 200, "swing");
	});
	
	// Middle "O"
	
	$("div#middle_circle").flash({
		src: 'static/fla/middle_o.swf',
		height: 195,
		width: 191
	});
	
	$("div#and-finally").flash({
		src: 'static/fla/and_finally.swf',
		height: 384,
		width: 576
	});
	
});
