$(document).ready(function(){
  $("#inicion").hover(function(){
     $("#inicion img").attr("width",175).attr("height",175);
  },function(){
     $("#inicion img").attr("width",150);
  });
  $("#doblar").hover(function(){
     $("#doblar img").attr("width",425).attr("height",51);
  },function(){
     $("#doblar img").attr("width",347);
  });
});
