

var x = 0;
var y = 20;
function menushow(menuid) {

	if  (ul = document.getElementById(menuid)) {
		ul.style.display = "block";
		ul.style.height = 250 + "px"
		AnimMenu();
	}
}
function menushow2(menuid) {

	if  (ul = document.getElementById(menuid)) {
		ul.style.display = "block";
		ul.style.height = 250 + "px"
	}
}
function menuhide(menuid) {
	x = 0;
	if (ul = document.getElementById(menuid)) {
		ul.style.display ="none";
		ul.style.height = 250 + "px"
		x = 0;
	}
}
function expandpic(picid) {

	if (pic = document.getElementById(picid)) {
		pic.style.height=240 + "px";
		//AnimPic();
	}
}
function shrinkpic(picid) {
	y = 20;
		if (pic = document.getElementById(picid)) {
		pic.style.height =20 + "px";
	}
}
function AnimMenu() {
	x=x+50;
	ul.style.height = x + "px";
	if (x<250) window.setTimeout("AnimMenu();",10);
	if (x>250) ul.style.height = 250 + "px";
	
}
function AnimPic() {
	y=y+10;
	pic.style.height = y + "px"
	if (y<240) window.setTimeout("AnimPic();",10);
	if (y>240) pic.style.height = 240 + "px";
}
