/*

I wasted 2 hours trying to get IE to simply use dropdowns according to the style.
Normally, you'd have to rewrite the header file to incorperate javascript. this is 
pretty much the same and I basically have to rely on data I store inside the Styles table.

This method, however, has more potential than the common dropdown bar. Because it assigns IDs to the child UL,
I can incorperate stuff from scrip.tacul.us.

*/


function dropdown(id,active) {


	var element = document.getElementById(id);
	
	
	
	if(active == "yes") {
	
		element.style.display = "block";
	
	/*
		for( var x = 0; element.childNodes[x]; x++ ){
		
			if( element.childNodes[x].tagName == 'UL' ) { new Effect.BlindDown('element.childNodes[x].tagName') }
			
		}
	*/
	
	
	}


	


}

function dropup(id) {

	
	var element = document.getElementById(id);
	
	element.style.display = "none";
	
	

}
