   function initMenu() {
     var $active = '';
     $('div.subnav').hide();
     $('a.active > img').attr('src','/images/down.png');
     $('div.active').show();
     $('a.noblock').click(
       function() {
		var $div = $(this).parents('tr').children('td').children('div').children('div');
		var $img = $(this).children('img');
		if ($div.is(":visible")) { 
			$img.attr('src','/images/right.png');
			$div.animate({height: 'toggle', width: 'toggle', opacity: 'toggle'}, "slow");			

		} else {
//			$('a.noblock').children('img').attr('src','/images/right.png'); //Turn Back all Images
			$img.attr('src','/images/down.png');
//			$('div.subnav').animate({height: 'hide', opacity: 'hide'}, "fast");  //Roll up any open divs
			$div.animate({height: 'toggle', width: 'toggle', opacity: 'toggle'}, "slow");			
		}
       }

     );
   }


 $(document).ready(function(){
   initMenu();
 });                                   
