function ShowHide(){
$("#comment-stores").animate({"height": "toggle"}, { duration: 1000 });
}
function ShowHide1(){
$("#showcomment-stores").animate({"height": "toggle"}, { duration: 1000 });
}

oldTextAry = new Array();

function changeText (fieldObj, newTexStr)
{
	if (newTexStr == fieldObj.innerHTML) {
		fieldObj.innerHTML = oldTextAry[fieldObj.id];
	} 
else 
{
oldTextAry[fieldObj.id] = fieldObj.innerHTML;
fieldObj.innerHTML = newTexStr;
}
}
function comment(id) {
	var id_div = document.getElementById(id);
	//alert(id_div.innerHTML);
	if(id_div.innerHTML == 'Show comments') { id_div.innerHTML = 'Hide comments'; }
	else { id_div.innerHTML = 'Show comments'; }
}


