$(function(){

	$('#cycle').cycle({ 
	    fx:    'fade', 
	    pause:  1 
	});
	
	$('#inner-bottom-block').cycle({ 
	    random: 1,
	    timeout: 600000 
	});
	
	$('.homepage-button').hoverIntent(makeTall,makeSmall);
	
	$('#upper-nav li a').hoverIntent(turnBlue,turnGreen);
	
	$('#content nav ul li a').hoverIntent(turnBlue,turnGreen);
	
	function makeTall(){
		$(this).animate({ 
			backgroundColor: "#0046b9",
			height: "215px"
		}, 500);
		$(this).children('.extra-text').fadeIn(500);
	}
	
	function makeSmall(){
		$(this).animate({ 
			backgroundColor: "#9fcd00",
			height: "69px"
		}, 500);
		$(this).children('.extra-text').fadeOut(100);
	}
	
	function turnBlue(){
		if($(this).hasClass('active')) {
			return false;
		} else { 
			$(this).animate({ backgroundColor: "#0046b9" }, 200);
		}
	}
	
	function turnGreen(){
		if($(this).hasClass('active')) {
			return false;
		} else { 
			$(this).animate({ backgroundColor: "#9fcd00" }, 200);
		}
	}

});

