$(document).ready(function(){
	$("#ovrvwstack ul li a").each(function(){
		$(this).click(packItemClick);
	});
});


function packItemClick(){
	$("#ovrvwstack ul li div").each(function(){
		$(this).removeClass("hidden");
		$(this).addClass("hidden");
	});
        $(this).next().removeClass("hidden");
        return false;
}
