$(document).ready(function (){
	$('a.wlistDL').click(showdescription);
	$("p.wlistD").hide();
});

function showdescription (){
	var guid = $(this).attr("id");
	guid = guid.substr(7);
	var img = $("a#wlistDL"+guid+" img").attr("src");
	img = img.substr(0,img.lastIndexOf("/")+1);
	if ($("p#wlistD"+guid).css("display") == 'none'){
		//hide
		$("p.wlistD").hide("fast");
		$("a.wlistDL img").attr("src", img+"triangle_closed.gif");
		//show
		$("p#wlistD"+guid).show("fast");
		$("a#wlistDL"+guid+" img").attr("src", img+"triangle_open.gif");
	}else{
		$("p.wlistD").hide("fast");
		$("a.wlistDL img").attr("src", img+"triangle_closed.gif");
	}
}
