function showStoriesImage(storyName) {
	var clickedId = 'stories-image-' + storyName;
	$("div[id^='stories-image-']").each(function(){
		if ($(this).attr('id') == clickedId) {
			$(this).html('<img src="images/content/stories/stories-'+storyName+'.png" />');
			$(this).show();
		} else {
			$(this).html('&nbsp;');
			$(this).hide();
		}
	});
}

function showHighlight(feature) {
	$("p[id^='featured-content-']").each(function(item){
		var requiredId = 'featured-content-' + feature;
		if ($(this).attr('id') == requiredId) {
			$(this).show();
		} else {
			$(this).hide();
		}
	});
	$("div[id^='spinner-arrow-']").each(function(item){
		var requiredId = 'spinner-arrow-' + feature;
		if ($(this).attr('id') == requiredId) {
			$(this).show();
		} else {
			$(this).hide();
		}
	});
}
