function hidestickie(objectname)
{
	$(objectname).toggle();
}

/* Take all the elements whatever you want to make Draggable. */
	var elements = [
		'stickie', 'stickie1', 'stickie2'
	];

// Make all the items drag able by creating Draggable objects
window.onload = function()
{
	elements.each(
		function(item) {
			if ($(item) != undefined)
				new Draggable(item, {starteffect: '', endeffect: ''});
		}
	);
}

