/*abcvis - the value 0 means the menu will be hidden when the page is opened and if value is set to 1 then the menu will be shown when the page is opened*/
var abcvis=0;
/*menu_speed - the value 1 is slowest speed and the value can go uptill 100 for highest. Note-SLOWER SPEED IS SMOOTHER. THE BEST SPEED IS 10*/
var menu_speed=10;

var temp=620;

if(document.all)
{
    doc = "document.all";
    sty = ".style";
    htm = ""
}
else if(document.layers)
{
    doc = "document";
    sty = "";
    htm = ".document"
}

function positionLayers()
{
 abcObj = eval(doc + '["abcLyr"]' + sty);
 abcObj.top = 2;
 if(abcvis==0)
 {
 abcObj.left = -temp;
 }
 else
 {
  abcObj.left = 0;
 }
}
function uplift() {
    var x_pos1 = parseInt(abcObj.left);
    if(x_pos1 >= -temp ) {
        abcObj.left = x_pos1-menu_speed;
        setTimeout("uplift()", 1);
    }
}
function downlift() {
    var x_pos1 = parseInt(abcObj.left);
    if(x_pos1 <= -1 ) 
	 {
	abcObj.left = x_pos1+menu_speed;
        setTimeout("downlift()", 1);
    }
}
