$(document).ready(function() {
	$('.photo img').animate({opacity: 0.75});

	$('.photo img').hover(function(e) {
		$(this).stop().animate({opacity: 1.0});
	}, function(e) {
		$(this).stop().animate({opacity: 0.75});
	});
});
			$(document).ready(function() {
				$("#twitter").getTwitter({
					userName: "willbremridge",
					numTweets: 2,
					loaderText: "Loading News...",
					slideIn: true,
					showHeading: false,
					headingText: null,
					showProfileLink: false
				});
			});