
function supportInit(){
    
    //zebra stripes
	$('table tbody tr:odd').addClass('odd');  

    // set up the color boxes
	$('div.def').hide();
	
	
	//setup FAQ collapsing
	$('#faqs dd').click(function(){
			if ($('#faqs dd .button a').hasClass('expanded')) {
				//changes more -> close
				$(this).find('a').removeClass('expanded');
				//makes dt a different color
				$(this).prev().removeClass('expanded');
				//hides definition
				$(this).find(".def").slideUp('fast');
			}
			else{
				//changes close -> more
				$(this).find('a').addClass('expanded');	
				//makes dt a different color
				$(this).find(".def").slideDown('fast');
				//shows definition
				$(this).prev().addClass('expanded');
			}
	});
	
	$('.pulldowns a.collapsed').click(function(){
		$(this).next('div.container').slideDown('fast'); 
		//$(this).next().addClass('expanded');
	});
	$('.pulldowns a.expanded').click(function(){
		$(this).parent('div.container').slideUp('fast'); 
		//$(this).next().addClass('expanded');
	});
	
	
} // end of supportInit()	






// cache background images!
try {
  document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}