$(document).ready(function() {
	$("#frontmenu .a2").hover(
		function() {
			$(this).stop()
				.animate({backgroundColor: "#273482"}, 100);
		},
		function() {
			$(this)	.stop()
				.animate({backgroundColor: "#6d749a"}, 100);
		}
	);

	transition();
});

var quotes = [ '#quote1', '#quote2', '#quote3' ];
var activeQuoteIndex = 0;

function transition() {
	$(quotes[activeQuoteIndex]).fadeOut();
	activeQuoteIndex = (activeQuoteIndex + 1) % quotes.length;
	$(quotes[activeQuoteIndex]).fadeIn();
	window.setTimeout('transition()', 8000);
}

