$(document).ready(function() {
 // hides the slickbox as soon as the DOM is ready
 // (a little sooner than page load)
 // jQuery('sideBarContents').hide();

  document.getElementById('sideBarContents').style.display = 'none';//Hides the DIV initially if using slider - K Prendergast 6-aug-09
 
 // toggles the slickbox on clicking the noted link  
 

var browser=navigator.appName;
var b_version=navigator.appVersion;

var b = browser+b_version;
if(b.indexOf('MSIE 6.0') != -1){
	document.getElementById('sideBarContents').style.display = 'block';
}
else{
 
   $('a#sideBarTab').click(function()
	{
		
	$('#sideBarContents').toggle("slow");
	;
	return false;
	});
}	
});