﻿function SetProductType(obj)
{
    $("#QuickSearchProduct").html(obj.innerHTML);
    $("#QuickSearchProductList").css("display","none");
}
function ShowDrop(dropdown_id)
{
	$("#" + dropdown_id + "List").css("width",parseInt($("#" + dropdown_id).css("width")) + 25);
	$("#" + dropdown_id + "List").css("display",$("#" + dropdown_id + "List").css("display")=="none" ? "" : "none");
}
function LightenDropDownItem(dropdown_item)
{
    dropdown_item.style.backgroundColor = "#ebebeb";
    dropdown_item.style.color = "#767676";
}
function UnLightenDropDownItem(dropdown_item)
{
    dropdown_item.style.backgroundColor = "";
    dropdown_item.style.color = "";
}
function LightenDropDown(dropdown_item)
{
    dropdown_item.style.backgroundColor = "#ebebeb";
    dropdown_item.style.backgroundImage = "url(images/DropDownBG_Hover.gif)";
    dropdown_item.style.backgroundPosition = "right center";
    dropdown_item.style.backgroundRepeat = "no-repeat";
}
function UnLightenDropDown(dropdown_item)
{
    dropdown_item.style.backgroundColor = "";
    dropdown_item.style.backgroundImage = "url(images/DropDownBG.gif)";
    dropdown_item.style.backgroundPosition = "right center";
    dropdown_item.style.backgroundRepeat = "no-repeat";
}
