jQuery(document).ready(function(){
	jQuery(".main-nav-item").click(function(){
		window.location=jQuery(this).find("a").attr("href"); return false;
	});
	jQuery(".main-nav-item").hover(function () {
		jQuery(this).find("a").css({ color:"white",borderBottom:"1px white dotted"});
		jQuery(this).css({cursor:"pointer"});
	},function () {
		jQuery(this).find("a").css({ color:"black",borderBottom:"1px black dotted"});
		jQuery(this).css({cursor:"default"});
	});
	jQuery(".story img,.headline img").wrap('<div class="alpha-shadow"><div></div></div>');
	//jQuery("p:empty").empty();
});