var DDSPEED = 10;
var DDTIMER = 15;

// main function to handle the mouse events //
function ddMenu(id,d){
  var h = document.getElementById(id + '-ddheader');
  var c = document.getElementById(id + '-ddcontent');
  clearInterval(c.timer);
  if(d == 1){
    clearTimeout(h.timer);
    if(c.maxh && c.maxh <= c.offsetHeight){return}
    else if(!c.maxh){
      c.style.display = 'block';
      c.style.height = 'auto';
      c.maxh = c.offsetHeight;
      c.style.height = '0px';
    }
    c.timer = setInterval(function(){ddSlide(c,1)},DDTIMER);
  }else{
    h.timer = setTimeout(function(){ddCollapse(c)},50);
  }
}

// collapse the menu //
function ddCollapse(c){
  c.timer = setInterval(function(){ddSlide(c,-1)},DDTIMER);
}

// cancel the collapse if a user rolls over the dropdown //
function cancelHide(id){
  var h = document.getElementById(id + '-ddheader');
  var c = document.getElementById(id + '-ddcontent');
  clearTimeout(h.timer);
  clearInterval(c.timer);
  if(c.offsetHeight < c.maxh){
    c.timer = setInterval(function(){ddSlide(c,1)},DDTIMER);
  }
}

// incrementally expand/contract the dropdown and change the opacity //
function ddSlide(c,d){
  var currh = c.offsetHeight;
  var dist;
  if(d == 1){
    dist = (Math.round((c.maxh - currh) / DDSPEED));
  }else{
    dist = (Math.round(currh / DDSPEED));
  }
  if(dist <= 1 && d == 1){
    dist = 1;
  }
  c.style.height = currh + (dist * d) + 'px';
  c.style.opacity = currh / c.maxh;
  c.style.filter = 'alpha(opacity=' + (currh * 100 / c.maxh) + ')';
  if((currh < 2 && d != 1) || (currh > (c.maxh - 2) && d == 1)){
    clearInterval(c.timer);
  }
}

// TABINATION
function show(ta,tabmenu)
{
	for(var i=1;i<=2;i++)
	{
	    document.getElementById('disp'+i).style.display='none';
	}
	document.getElementById(ta).style.display='block';
	
	if(tabmenu=='domain_name')
	{
		if(document.getElementById('web_hosting')!=null)
		{
			document.getElementById('web_hosting').style.backgroundImage='none';
			document.getElementById('web_hosting').style.backgroundImage='url(http://www.honextech.com/theme/images/web_hosting_hover.jpg)';
		}
		
<!--		if(document.getElementById('reseller_hosting')!=null)
<!--		{
<!--			document.getElementById('reseller_hosting').style.backgroundImage='none';
<!--			document.getElementById('reseller_hosting').style.backgroundImage='url(http://www.honextech.com/theme/images/reseller_hosting_hover.jpg)';
<!--		}
		
		document.getElementById('domain_name').style.backgroundImage='url(http://www.honextech.com/theme/images/domain_name.jpg)';
		document.getElementById('domain_name').style.color='#ffffff';
	}
	if(tabmenu=='web_hosting')
	{
		if(document.getElementById('domain_name')!=null)
		{
			document.getElementById('domain_name').style.backgroundImage='none';
			document.getElementById('domain_name').style.backgroundImage='url(http://www.honextech.com/theme/images/domain_name_hover.jpg)';
		}
		
<!--		if(document.getElementById('reseller_hosting')!=null)
<!--		{
<!--			document.getElementById('reseller_hosting').style.backgroundImage='none';
<!--			document.getElementById('reseller_hosting').style.backgroundImage='url(http://www.honextech.com/theme/images/reseller_hosting_hover.jpg)';
<!--		}
		
		document.getElementById('web_hosting').style.backgroundImage='url(http://www.honextech.com/theme/images/web_hosting.jpg)';
	}
<!--	if(tabmenu=='reseller_hosting')
<!--	{
<!--		if(document.getElementById('domain_name')!=null)
<!--		{
<!--			document.getElementById('domain_name').style.backgroundImage='none';
<!--			document.getElementById('domain_name').style.backgroundImage='url(http://www.honextech.com/theme/images/domain_name_hover.jpg)';
<!--		}
<!--		
<!--		if(document.getElementById('web_hosting')!=null)
<!--		{
<!--			document.getElementById('web_hosting').style.backgroundImage='none';
<!--			document.getElementById('web_hosting').style.backgroundImage='url(http://www.honextech.com/theme/images/web_hosting_hover.jpg)';
<!--		}
<!--		
<!--		document.getElementById('reseller_hosting').style.backgroundImage='url(http://www.honextech.com/theme/images/reseller_hosting.jpg)';
<!--		document.getElementById('reseller_hosting').style.color='#ffffff';
<!--	}
}

// CUSTOMER LIST
var top=0;
var totalimg=0;
function mover(df){
 alert("Hi");
	if(df == 'up'){
	 alert("UP");
		if(top+4 < totalimg){
		 alert(top);
		for(var gh=0; gh<4; gh++){
			var top1 = document.getElementById('a'+gh);
			top1.src=rImg1[gh+top+1].src;
		}
		top=top+1;
		}
	}

	if(df == 'down'){
	 alert("DOWN");
		if(top > 0){
		for(var gh=0; gh<4; gh++){
			var top1 = document.getElementById('a'+gh);
			top1.src=rImg1[gh+top-1].src;
		}
		top=top-1;
		}
	}
}
