/**
 * @author Shaun Morton
 * This script adds a hover event to tweets in the "Related Tweets" section
 */
$(document).ready(function(){
	$(".tweet").hover (
		function () {
			$(this).addClass("highlight");
			$(this).children(".viewtweet").removeClass("hide");
		},
		function () {
			$(this).removeClass("highlight");
			$(this).children(".viewtweet").addClass("hide");
		}
	)
});
