Getting a comic from GoComics

The HTML below is a sample of what we need to screen scrape for to find the a comic from GoComics

The img that we want is actually found in the first <p> tag, making parsing very easy.

<p class="feature_item" data-id="1159902">
   <a href='#mutable_1159902' class='photo'>
      <img alt="Nancy" class="strip" 
	       src="http://assets.amuniversal.com/f7b4b780c1b00131596a005056a9545d" 
		   width="600" />
	  <span class='zoom_link'></span>
   </a>
   <div id='mutable_1159902' style='display: none;'>
	  <img alt="F826a910c1b00131596a005056a9545d" class="strip" 
	       src="http://assets.amuniversal.com/f826a910c1b00131596a005056a9545d" />
   </div>
</p>