$(document).ready(function () {

	// Make all of news panel a link
	$(".newsStory").click(function () {
		location.href = $(this).find("a").attr("href");
	});

	// Mouseovers
	$(".mouseOver").hoverIntent(function () {
		$(this).find(".banner2").fadeIn();
	}, function () {
		$(this).find(".banner2").fadeOut();
	});


	$(".banner2").click(function () {
		$(this).hide();
	});
});
