$(document).ready(function(){
  var is=[{left:0,top:0,blur:2,opacity:0.4,color:"#000000",swap:false},{left:0,top:0,blur:2,opacity:0.6,color:"#aaaaaa",swap:false}];
  $(".ds").dropShadow(is[0]);
  $(".is").dropShadow(is[0]);
  $(".is").focus(function(){$(this).removeShadow().dropShadow(is[1]);}).blur(function(){$(this).removeShadow().dropShadow(is[0]);});
});


