/* 
  delayHTTPoverhead 
  written by Christian Heilmann with help from Drew McLellan, David Dorward and Lawrence Carvalho
  http://www.wait-till-i.com/index.php?p=465 | License: http://creativecommons.org/licenses/by/3.0/
*/
function delayHTTPoverhead() {
  var parentID = '';
  var avtClass = 'avatar';
  function ri() {
    var img=parentID !== '' ? document.getElementById(parentID).getElementsByTagName('img') : document.getElementsByTagName('img');
    var rep = /.*#/;
    for (var i=0;img[i];i++) {
      var src=img[i].src;
      if (src.indexOf('#')!=-1&&img[i].className.indexOf(avtClass)!==-1) {
        img[i].src = src.replace(rep,'');
      };
    };
  }
  $(document).ready(ri);
};


$(document).ready(function() {
  $('#search-box').focus(function() {
    if (this.value == 'Search') {
      this.value = '';
    }
  });
  $('#search-box').blur(function() {
    if (this.value == '') {
      this.value = 'Search';
    }
   });
  $('a[href=http://www.amazon.co.uk/gp/product/1594850909?ie=UTF8&tag=generous-21&linkCode=as2&camp=1634&creative=6738&creativeASIN=1594850909]').attr('target', '_blank');

});