$(document).ready(function() {

	 $('.navigation').append('<div class="cloud"><div class="tip"><h3>This Cloud chair rocks!</h3><p>There&#8217;s no way I could get this chair so I put the picture on my site instead.</p><p class="arr"><a href="http://www.wisdesign.se/furniture/cloud-chair.aspx" title="Cloud">Check the Cloud out&rarr;</a></p></div></div>');
	 $('.cloud .tip').hide();
	 $('.cloud').hover(
      function () {
        $('.cloud .tip').show();
      }, 
      function () {
        $('.cloud .tip').hide();
      }
    );


});// document ready