function switchContent(div) {
	$('#' + div + '').slideToggle('slow');
	$("#content, #side_bar, #content_body").equalheight(); 
}

var tempDiv;
function switchContentBody(div) {
	if(div != tempDiv) {
		$('#' + tempDiv + '').slideUp('slow');
		tempDiv = div;
	}
	$('#' + div + '').slideToggle('slow');
	$("#content, #side_bar, #content_body").equalheight(); 
}

$(function() {

	$('#about_ifco_tab').hover(function () {
	    $('#about_bar').show();
	  }, 
	  function () {
	    $('#about_bar').hide();
	  }
	);
	
	$('#about_bar').hover(function () {
	    $('#about_bar').show();
	  }, 
	  function () {
	    $('#about_bar').hide();
	  }
	);
	
});
