$(document).ready(function() {
	/*
	 * POSTS
	 */
		//Post titles
		$('.post h2 a')
		.mouseover(function() {
			$(this)
			.stop().css({ color: '#CCC' });
		})
		.mouseout(function() {
			$(this)
			.stop().animate({ color: '#000' }, 700);
		});
	
		//Links Below Articles 
		$('.postmetadata a')
		.mouseover(function() {
			$(this)
			.stop().animate({ backgroundColor: '#CCC', color: '#333' }, 1);
		})
		.mouseout(function() {
			$(this)
			.stop().animate({ backgroundColor: '#000', color: '#FFF' }, 700);
		});
		
		//Twitter Header Mouse Over
		$('.widget_twitter h2')
		.mouseover(function() {
			$(this).css('opacity', .7);
		})
		.mouseout(function() {
			$(this).css('opacity', 1);
		})
		.click(function() {
			window.location = 'http://www.twitter.com/gardentothecity';
		});

		//Pagination Links
		$('.navigation a').click(function() {
			$(this)
			.stop().animate({ color: '#000' }, 300,function() {
				$(this).fadeTo(100, 0);
			});
		});
		
	/*
	 * FOOTER
	 */
	$('.footer_fabric')
	.css('opacity', '.15')
	.mouseover(function() {
		$(this).stop().css('opacity', '.3');
	})
	.mouseout(function() {
		$(this).stop().animate({opacity : '.15'}, 300);
	})
});