var current;

function showCurrent() { 
	$('#featuredreviews').hide();                
	$('#featurednews').hide();
	$('#featurededitorials').hide();
	$('#featuredpodcasts').hide();
	$('#featuredvidcasts').hide();
	$('#featuredreviews').hide();                
	$('#featurednews').hide();
	$('#featurededitorials').hide();
	$('#featuredpodcasts').hide();
	$('#featuredvidcasts').hide();
        $('#'+current).fadeIn(200);
}

$(document).ready(function() {
	
	$('a#podcast').mouseover(function() {
        	current = "featuredpodcasts";
		showCurrent();
        });

	$('a#reviews').mouseover(function() {                
		current = "featuredreviews";
		showCurrent();
        });

	$('a#news').mouseover(function() {                
		current = "featurednews";
		showCurrent();
        });
	$('a#vidcasts').mouseover(function() {
		current = "featuredvidcasts";
		showCurrent();
        });
	$('a#editorials').mouseover(function() {
		current = "featurededitorials";
		showCurrent();
        });
});