function toggle() {
	itm = document.getElementById("extendend_picture_options");
	itm2 = document.getElementById("extendend_picture_options_open");
	itm3 = document.getElementById("extendend_picture_options_close");
	 
	if (itm.style.display == "none") {
	  itm.style.display = "";
	  itm2.style.display = "none";
	  itm3.style.display = "";
	} else {
	  itm.style.display = "none";
	  itm2.style.display = "";
	  itm3.style.display = "none";
	} 
}

function fade(id_1, id_2) {
	id_1 = document.getElementById(id_1);
	 
	if (jQuery(id_1).css("display") == "none") {
	  jQuery(id_1).fadeIn('slow');
	} else {
	  jQuery(id_1).fadeOut('slow');
	} 
}
