$(function(){
	//for all 'View Details link', slide down their list when the link is clicked
	$('div.alv a').click(
		function(){
			//get the list
			$this = $(this);
			$temp = $this.attr('id')
			$id= $temp.substring(3, $temp.length);
			//alert($id);
			$box = $('#al-'+$id);
			$box.slideDown(400);
			$('#ab-'+$id).children('div.alh').addClass('active').end().siblings().children('div.alh').removeClass('active').end().find('ul.al-list').slideUp(100);
			return false;
		}
	);
});
