// JavaScript Document
var toggleState = 0;

function showsubtopnavLayer(){
	if(toggleState==0) {
		$('subtopnavwrapper').effect('height').start(1,160);
		toggleState = 1
	}
	else {
		$('subtopnavwrapper').effect('height').start(160,1);
		toggleState = 0
	}
}// JavaScript Document