﻿function toggle(id) {
	if ($(".guideshortlist #hideandshow_" + id).attr("class") == "show") {
		$(".guideshortlist #hideandshow_" + id).attr('class', 'hide');
		$(".guideshortlist #expander_" + id).attr('src', '/images/close.gif');
		$(".guideshortlist #hideall_" + id).attr('class', 'hide');
		$(".guideshortlist #showmore_" + id).attr('class', 'show');
	}
	else {
		$(".guideshortlist #hideandshow_" + id).attr('class', 'show');
		$(".guideshortlist #expander_" + id).attr('src', '/images/open.gif');
		$(".guideshortlist #hideall_" + id).attr('class', 'show');
		$(".guideshortlist #showmore_" + id).attr('class', 'hide');
	}
}
