$(document).ready(function(){
	$(".sf_controlListItems a").each(function(i){
		$(this).attr("href", "javascript:void(0);");
		$(this).click(function() {
			ShowHide($(this).attr("rel"));
			$(".sf_controlListItems a").toggle();
		});
	});
	
	$(".sf_listItemTitle").click(function(){
		$(this).siblings(".sf_listItemBody").toggle();
	});
	
	$(".sf_listItemTitle a").each(function(){
		$(this).attr("href", "javascript:void(0);");
	});
});

function ShowHide(mode)
{
	switch(mode.toLowerCase())
	{
		case "expand":
			$(".sf_listItemBody").show();
			break;
		case "collapse":
			$(".sf_listItemBody").hide();
			break;
	}
}