//the window by default is open
var action = 'close';
function runthis() {
	var item = document.getElementById("toggleitem")
	if (action == 'close') {
		//so the first action needs to be close
		
		item.className = "togglethis";
		item.innerHTML = "View Cold Storage Movie";
		Effect.SlideUp('dropwindow')
		action = 'open';
		return action;

	} else if ( action == 'open') {
      	//and the next action needs to be open

		item.className = "closethis";
		item.innerHTML = "Close";
      	Effect.SlideDown('dropwindow')
		action = 'close';
		return action;
	}

}