function showHide(id, action) {
	var visibility	= document.getElementById(id).style.display;

	if(visibility == 'none' || visibility == '' || action =='show') {
		visibility	 = 'block';
		document.getElementById(id).parentNode.style.backgroundImage = 'url(/templates/test/gfx/content_topbg.png)';
		document.getElementById(id).parentNode.style.backgroundColor = '#FFFFFF';

	} else {
		visibility	 = 'none';
		document.getElementById(id).parentNode.style.backgroundImage = '';
		document.getElementById(id).parentNode.style.backgroundColor = '';
	}

	document.getElementById(id).style.display	 = visibility;
}

function showOnLoad() {
	var strHref = window.location.href;
	if ( strHref.indexOf("#") > -1 ){
		var strQueryString = strHref.substr(strHref.indexOf("#")+1).toLowerCase();
		if(strQueryString.substr(0,3) == 'faq') {
			showHide(strQueryString, 'show');
		}
	}
}