
	//menu
	$(document).ready( 
		function (){ 
			$(".menu_top").click( function() { 
				$(this).next(".menu_list").show(); 
				$(".menu_top").not(this)            
				            .next(".menu_list:visible")	
					    .hide(); 
			});	
	});


	$(document).ready( 
		function (){ 
			
			var image = $("#image").text();
			var video = $("#video").text();
			var sound = $("#sound").text();

			image = parseInt(image);
			video = parseInt(video);
			sound = parseInt(sound);

			if(image > 0) {  } else { image = 0}
			if(video > 0) {  } else { video = 0}
			if(sound > 0) {  } else { sound = 0}
			
			var w = image + video + sound;	

			if (w < 20) {
				$(".menu_list").show(); 
			}
					
	});


	
