 $(function() {
	//auto hide qview divs
	$("div.qview").hide();								 
	
	//show/hide qview divs			
	$("a.trigger").click(function(event){
		event.preventDefault();
		$(this).nextAll("div.qview:first").slideToggle();
		$(this).nextAll("#qview_img").rotateRight(180);
	return false;
	});

});

