$(document).ready(function() 
{
	$(".hoverTrigger h3 a").hover(function () { 
			$(this).parent().parent().addClass("hover"); }, function () {
			$(this).parent().parent().removeClass("hover"); });

	$("#movieList .tiles a:first-child img").css('margin-left',0);

	$("input.postButton").click(function () {
		$("input.postButton").css("display","none");
	});

	$("#bodyContainer p:first-child").css('margin-top',0);

	externalLinks ();
	socialSpread ();
});