threat1, threat2, threat3, threat4 = false;

function slideThreat(current) {
	
	if (current == 'threat1') {
		if(threat1) {
			Effect.SlideDown('threat1');
			threat1 = false;
		} else {
			Effect.SlideUp('threat1');
			threat1 = true;
		}
	
	} else if (current == 'threat2') {
		if(threat2) {
			Effect.SlideDown('threat2');
			threat2 = false;
		} else {
			Effect.SlideUp('threat2');
			threat2 = true;
		}
		
	} else if (current == 'threat3') {
		if(threat3) {
			Effect.SlideDown('threat3');
			threat3 = false;
		} else {
			Effect.SlideUp('threat3');
			threat3 = true;
		}	
	
	} else if (current == 'threat4') {
		if(threat4) {
			Effect.SlideDown('threat4');
			
			threat4 = false;
		} else {
			Effect.SlideUp('threat4');
			threat4 = true;
		}
	
	}
} 

function slideMore(current, direction) {

	
	//alert(currLink);
	  
	  if (direction) {
	  	Effect.SlideDown(current);
	  	currLink = current + '-link-off';
	  	document.getElementById(currLink).style.display = 'none';
	  	currLink = current + '-link-on';
	  	document.getElementById(currLink).style.display = 'block';
	  } else {
	  	Effect.SlideUp(current);
	  	currLink = current + '-link-on';
	  	document.getElementById(currLink).style.display = 'none';
	  	currLink = current + '-link-off';
	  	document.getElementById(currLink).style.display = 'block';
	  }
	
	
}
