// JavaScript Document
	$(function(){
		setInterval("rotateImages()",4500);
	});
	function rotateImages(){
		var currentPhoto=$("#logo div.current");
		var nextPhoto=currentPhoto.next();
		if(nextPhoto.length==0){
			nextPhoto=$("#logo div:first");	
		}
		currentPhoto.removeClass("current").addClass("previous");
		nextPhoto.css({opacity:0.0}).addClass("current").animate({opacity:1.0},750,
		function(){
			currentPhoto.removeClass("previous");
		});
		};
