	$(document).ready(function(){
	$("#menuholder").css("width","0");
	$("#menuholder").css("height","0");
	$("#menubind").hide();
	$("#guideme").click(function(){
		 if(document.getElementById("menubind").style.display =="none"){
	 $("#menubind").slideToggle("fast", function(){
           var x = $(this).offset();
        $('html').animate({scrollTop: x.top},"fast");
          });
		$("#menuholder").animate({height:45},"fast");
		$("#menuholder").animate({width:900},"fast"); 
		} else {
		$("#menubind").slideToggle("fast", function(){
           var x = $(this).offset();
        $('html').animate({scrollTop: x.top},"fast");
          });
		$("#menuholder").animate({height:0},"fast");
		$("#menuholder").animate({width:0},"fast"); 
		}
	 });
	 });

