﻿jQuery("ul#collectionIndex a").click(function() {
	jQuery("div.collectionContainer").removeClass("show");
	var strLinkID=jQuery(this).attr("id");
	// alert(strLinkID);
	strShowID="#show_"+strLinkID;
	// alert(strShowID);
	jQuery(strShowID).addClass("show");
	jQuery("ul#collectionIndex a").removeClass("active");
	jQuery(this).addClass("active");
}).filter(':first').click();
