$(document).ready
(
	function()
	{
		$('.app_title_box a').toggle
		(
		   function()
		   {
		   	var app_id=$(this).attr('name');
				$("#app_box_"+app_id).hide('slow');
				$(this).html("<img src='"+template_url+"/images/minus.gif'>");
		   },
		   function()
		   {
		   	var app_id=$(this).attr('name');
				$("#app_box_"+app_id).show('fast');
				$(this).html("<img src='"+template_url+"/images/plus.gif'>");
		   }
		);
	}
);
