$(function() {
	$("body").addClass("shefeed");
	$("#nav_shefeed a").click(showSheFeed);
	$("#nav_lffeed a").click(showLFFeed);
	$("#nav_branchefeed a").click(showBrancheFeed);
	$("#nav_top5feed a").click(showTop5Feed);
});

function showSheFeed() {
	$("body").removeClass("shefeed");
	$("body").removeClass("branchefeed");
	$("body").removeClass("top5feed");
	$("body").addClass("lffeed");
	return false;
}

function showLFFeed() {
	$("body").removeClass("lffeed");
	$("body").removeClass("branchefeed");
	$("body").removeClass("top5feed");
	$("body").addClass("shefeed");
	return false;
}

function showBrancheFeed() {
	$("body").removeClass("lffeed");
	$("body").removeClass("shefeed");
	$("body").removeClass("top5feed");
	$("body").addClass("branchefeed");
	return false;
}

function showTop5Feed() {
	$("body").removeClass("lffeed");
	$("body").removeClass("shefeed");
	$("body").removeClass("branchefeed");
	$("body").addClass("top5feed");
	return false;
}
