$(function() {
	$(".nav a").hover(function() {
		if(!$(this).hasClass('selected')) {
			
			if($(this).html().length <= 24 ) {
				$(this).stop().animate({
					paddingLeft: "30px",
					color: "#feebd4"
				}, 310);
			}else {
				$(this).stop().animate({
					color: "#feebd4"
				}, 310);
			}
			
		}
	}, function() {
		if(!$(this).hasClass('selected')) {
			$(this).stop().animate({
				paddingLeft: "0px",
				color: "#789442"
			});
		}
	});
	
	$('.frontpage').cycle('shuffle');
});