// JavaScript Document
function showDetails(storeId,detailsCount,linkId)
{
	$(".storeListDisplay").css({ fontWeight :"normal",color: "#A2300E"});
	
	document.getElementById(linkId).style.fontWeight = 'bold';
	document.getElementById(linkId).style.color = '#F00';

	storeId2 = "#" + storeId;
	
	
	$(document).ready(function()
						{
							$(".store_details").css({ display :"none" });
							//$(storeId2).fadeIn(200).end();
							document.getElementById(storeId).style.display = "block";
						});
}