/**
 * @author jonG
 */
		function showCatalog(tagCounter,isLoggedIn){
			if (isLoggedIn == 1) {
				if (jQuery(".catalogue-" + tagCounter) == "105761") {
					jQuery(".catalogue-" + tagCounter).show();
				}else{
					jQuery(".catalogue-" + tagCounter).hide();
				}
			}else{
					jQuery(".catalogue-" + tagCounter).hide();
			}
		}
