$(function(){
$("dl").hide();
$("li.mainmenu").hover(function(){
$(this).find("dl").stop(true,true);
$(this).find("dl").slideDown();
},function(){
$(this).find("dl").stop(true,true);
$(this).find("dl").slideUp();
});
})
$(document).ready(function(){
$(".pic .box .img").mouseover(function(){
$(this).find("img").animate({width:'350',height:'250', left:'0',top:'0',opacity:'0.7'});
});
$(".pic .box .img").mouseleave(function(){
$(this).find("img").animate({width:'330',height:'230',left:'10',top:'5',opacity:'1'});
});
});