function OnHoverOn(sender)
{
    sender.style.backgroundColor = "#f7f7f7";
	//sender.onmouseout = function() {OnHoverOut(sender)}	
}
function OnHoverOut(sender)
{
    sender.style.backgroundColor = "";
	//sender.onmouseover = function() {OnHoverOn(sender)}	
}
function open_basket(sender)
{
	var inputCollection2 = document.getElementsByName("Count");
    for(i=0;i<inputCollection2.length;i++)
    {
		inputCollection2[i].className = "None";
	}
	RemoveTextNode(sender.parentNode.parentNode.nextSibling).className = "Count";	
}

function RemoveTextNode(startBrother)
{
  endBrother=startBrother;
  if(endBrother!=null)
  {  
      while(endBrother.nodeType!=1)
      {
        endBrother = endBrother.nextSibling;
      }
  }
  return endBrother;
}
