









/*
 * Copyright (c) 2008 Radley Yeldar
 * Used for rollovers on both the homepage and story pages.
 */

$(document).ready(function() {

	$(".teaserBox").hover(hoverOn, hoverOff);
	
	function hoverOn(){
		$(this).find(".teaser-image-greyscale").hide();
		$(this).find(".teaser-image").show();
	}
	
	function hoverOff(){
		$(this).find(".teaser-image").hide();
		$(this).find(".teaser-image-greyscale").show();
	}
});    
