/*	Takes a parameter equal to the ID of an object 
	If the object is visible, hide the object
	If the object is not visible, show the object
*/

function toggleDiv(id) {
	if ($(id).visible() ) {
		//$(id).hide();
		Effect.BlindUp(id);
	}
	else {
		//$(id).show();
		Effect.BlindDown(id);
	}
}