
	function showmapbox(pid)
	{
		$('.mbox').hide();
		$(pid).slideDown(150);
	}
	
	function sh(pid)
	{
		$(pid).toggle();
	}
	
	image1 = new Image(); image1.src = "public/img/bon.png";
	image2 = new Image(); image2.src = "public/img/b2on.png";
	
	$(document).ready(function(){
		
		$('a').css('cursor', 'pointer');
		
		$('.mbox').click(function(){
			$(this).hide();
		})
		
		/*
      $('.main .right ul.list a').hover(function(){
          $(this).animate( { marginLeft: "3px" }, 150 )
          }, function(){
          $(this).animate( { marginLeft: "0px" }, 150 )
          });
		 		*/
		
		
	})
	
