function submenu(id){
	if($(".submenu:visible").attr("id") != "sub"+id){
		$(".submenu:visible").slideUp(150);
		$("#sub"+id).slideDown(400);
	} else {
		$(".submenu:visible").slideUp(300);
	}
}

function imgplus(obj){
	var obj = $(obj);
	
	obj.css("z-index", "100").parent().css("z-index", "100").parent().css("z-index", "100");
	obj.animate({'width': '150', 'height': '150', 'left': '-=35', 'top': '-=35'}, 'fast').parent().animate({'width': '150', 'height': '150', 'left': '-=25', 'top': '-=25'}, 'fast').find("label").show(100);
}

function imgminus(obj){
	var obj = $(obj);
	obj.css("z-index", "1").parent().css("z-index", "1").parent().css("z-index", "1");
	obj.animate({'width': '70', 'height': '70', 'left': '+=35', 'top': '+=35'}, 'fast').parent().animate({'width': '70', 'height': '70', 'left': '+=25', 'top': '+=25'}, 'fast').find("label").hide(1);
}
