// Hidshow

function expend(sid, fid)
{
	document.getElementById(sid).style.visibility = "hidden";
	document.getElementById(sid).style.display = "none";
	
	document.getElementById(fid).style.visibility = "visible";
	document.getElementById(fid).style.display = "inline";
}

// Image Viewer
						
stepcarousel.setup({
	galleryid: 'mygallery', //id of carousel DIV
	beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel', //class of panel DIVs each holding content
	autostep: {enable:false, moveby:1, pause:1000},
	panelbehavior: {speed:1000, wraparound:false, persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['images/arrow_left.png', 0, 85], rightnav: ['images/arrow_right.png', -22, 85]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})

// Image Viewer1
						
stepcarousel.setup({
	galleryid: 'mygallery1', //id of carousel DIV
	beltclass: 'belt1', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel1', //class of panel DIVs each holding content
	autostep: {enable:false, moveby:1, pause:5000},
	panelbehavior: {speed:1000, wraparound:false, persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['images/lft.gif', -15, 135], rightnav: ['images/rht.gif', 0, 135]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['external', 'path_to_external_file']
})
