$(function(){$(".list ul").hide();})
$(document).ready(function() {
	// do something here

$('.list').find('dd').hover(
						function(){
							$(this).find('ul').show();//animate({ height:'show',opacity:'show'},'slow');
							$(this).addClass('on')
							},
							function(){$(this).find('ul').hide();//animate({height:'hide',opacity:'hide'},'slow')
							$(this).removeClass('on')
							});
$('.download').find('li').hover(function(){
										 $(this).css('background-color','#fafafa')},
										function(){$(this).css('background-color','transparent')
										  })
});