jQuery(document).ready(function($){
var base = $("#hidemenu");
  base.animate({
            marginLeft:"245",
            marginTop:"19"
        }, 500);       
$("#menu-act").bind("click",function(x){
    x.preventDefault();
    if(base.css("margin-left") == "245px"){
        base.animate({
            marginLeft:"0"
        }, 500);
    }else{
        base.animate({
            marginLeft:"245"
        }, 500);
    }
    

})


})
