 $(document).ready(function(){
 	$("#intermediaweb").delay(4000).fadeTo( "slow", '.3');
 	 var i = 0;
  $("#intermediaweb").mouseover(function() {
    i += 1;
   
    $(this).animate({"width": "120px"}, "slow");
    $(this).fadeTo( "slow", '1');
   
  }).mouseout(function(){
    $(this).animate({"width": "37px"}, "slow");
    $(this).fadeTo( "slow", '0.3');
  });

 });
