function hiliteProd(targetURL) {	
	var curURL = document.location.href;
	curURL = curURL.substr(curURL.indexOf("?page_id=")-1);
	var sameURL = (curURL.split("#")[0] == targetURL.split("#")[0]);
		
	var processURL;
	processURL = targetURL;
	if (processURL=="") processURL = curURL;
	
	if (curURL.lastIndexOf("#pid")!=-1) {
		try {
			var hlelt = processURL.substring(processURL.lastIndexOf("#pid")+1);
			if (sameURL || targetURL=="") {
				new Effect.ScrollTo(hlelt, {duration: 0.5});
				new Effect.Highlight(hlelt, {duration: 2, startcolor: "FFdd88"});
			}
		} catch(e) {}
	}
	
	if (sameURL) return false;
	return true;
}

function top_blogimghide() {
	
}