(function($) { //* hide the namespace
$(function() {
	$("div#stories ul li a").hoverIntent(switchBG, doNothing);
});
function doNothing(){ }
function switchBG(){
	e = $(this).attr('href');
	e = e.substring(e.lastIndexOf('/')+1);
	e = e.replace('.','_');
	
	if($('div#'+e).css("display") == "none"){
		$("div#news-photo div").hide();
		$('div#'+e).fadeIn('slow');
	}
}
})(jQuery); //* hide the namespace