$(document).ready(function() {
	
	$('#sideBarTab').click(function () {
		$('#sideBarContents').toggle("fast");	
		
		return false;
	});

});