 /**
 *	Author : PERRAUDIN Steven <steven.perraudin@gmail.com>
 *	Author URI : http://unseen07.info
 *	FileName : dropdown.js
 *	Description : Drops down or up, the news, to gain space.
 *		The MySQL query is sent to dd.php, in the archives module file
 */

function dropDown(id){
	
	
	if(document.getElementById(id).style.display == "none"){
		new Effect.BlindDown(id);

	}
	else{
		new Effect.BlindUp(id);
	}

}
