
$(document).ready(function(){
	$('.FF_welcome a').hover(
	  function() {
		  $(this).find('img').attr('src', $(this).find('img').attr('src').replace(/\.png/, '_hover.png'));
	  },
	  function() {
		  $(this).find('img').attr('src', $(this).find('img').attr('src').replace(/\_hover\.png/, '.png'));
	  }
	);

	$("#rotatedImageDiv img:first").addClass("active");
	$("#rotatedImageDiv img").everyTime(5000, function(i) {
		var $active = $('#rotatedImageDiv .active');
		var $next = ($('#rotatedImageDiv .active').next().length > 0) ? $('#rotatedImageDiv .active').next() : $('#rotatedImageDiv img:first'); 
		$active.fadeOut(function() {
			 $active.removeClass('active');
			 $next.fadeIn().addClass('active');
		});
	});
});
