// JavaScript Document
/*
 * needs jquery-1.3.2 and jquearty.innerfade
*/
function showHide($show_id, $hide_id){
	$('div#'+$hide_id).hide();
	$('div#'+$show_id).fadeIn(1000);
}
function show($show_id){
	showHide($show_id, 'all');
}
function showAll($hide_id){
	showHide('all',$hide_id);
}
jQuery(window).bind("load", function() {
	jQuery("div#slider").codaSlider()
			// jQuery("div#slider2").codaSlider()
			// etc, etc. Beware of cross-linking difficulties if using multiple sliders on one page.
	var autoSlide = setInterval(function()  
      {  
        $("#left-link").click();  
        }, 5000);  
});