// JavaScript Document

	jQuery().ready(function(){
		
		// second simple Accordion with special markup
		jQuery('#navigation').Accordion({
			active: true,
			header: '.head',
			navigation: true,
			event: 'mouseover',
			autoheight: true,
			animated: 'easeslide'
		});

		// bind to change event of select to control first and seconds accordion
		// similar to tab's plugin triggerTab(), without an extra method
		jQuery('#switch select').change(function() {
			jQuery('#navigation').activate( this.selectedIndex-1 );
		});
		jQuery('#close').click(function() {
			jQuery('#navigation').activate(-1);
		});
		jQuery('#switch2').change(function() {
			jQuery('#navigation').activate(this.value);
		});
		
	});
	
<!--

//Disable right mouse click Script

var message="Right Click Disabled by the California Skin Institute";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")

// --> 