$(window).resize(function() {
	if($(window).height() >= ($('#content_wrap').height()+$('#footer').height()+25)){
		$('#footer').css({
			position: 'absolute',
			top: 'auto',
			bottom: '0px'
		});
	} else {
		$('#footer').css({
			position: 'relative',
			top: '0px',
			bottom: 'auto'
		});
	}
});
	
$(window).ready(function () {
	if($(window).height() >= ($('#content_wrap').height()+$('#footer').height()+25)){
		$('#footer').css({
			position: 'absolute',
			top: 'auto',
			bottom: '0px'
		});
	} else {
		$('#footer').css({
			position: 'relative',
			top: '0px',
			bottom: 'auto'
		});
	}
			
	$('a.blue').mouseenter(function () {
		$(this).animate({
			color: "#b09b93"
		}, 250);
	});
	$('a.blue').mouseout(function () {
		$(this).animate({
			color: "#88aacd"
		}, 750);
	});
	$('a.tan').mouseenter(function () {
		$(this).animate({
			color: "#88aacd"
		}, 250);
	});
	$('a.tan').mouseout(function () {
		$(this).animate({
			color: "#b09b93"
		}, 750);
	});
});
