

//Listing DIV Hover Effect
 function highlight(hoverItem,x)
{
	//alert("item_list"+x);
	hl = document.getElementById("category_item"+x);
	hl.style.backgroundColor = "#f9f9f9";
}
 function dehighlight(hoverItem,x)
{

	hl = document.getElementById("category_item"+x);
	hl.style.backgroundColor = "#ffffff";
}
