function roll(imagename, newimage)
   {
   if (document.images)
      {
      document[imagename].src = newimage;
      }
   }


/* DROP DOWN MENU */

$(document).ready(function(){

		$('#Nav > li').each(function(i){						 
			$(this).hover(function(){  
				$(this).find('ul.subnav').show();
			},function(){
				$(this).find('ul.subnav').hide();
			});
		});
		
		 

});
		