1)
$('#moto_table tbody tr').toggle(function(){
$(this).click(function(){
$(this).addClass('svet');
})
},function(){
$(this).click(function(){
$(this).removeClass('svet');
})
})
2)
$('#div_for_img > img').toggle(function(eventObject){
if(eventObject.shiftKey){
$(this).css({'border':'4px solid #cc0000'});
}
else{
$(this).css({'border':'4px solid #333333'});
}
}
,
function(){
$(this).css({'border':'none'});
})
Это из Попова.
Спасибо