function initShopSlideshow(){  
  
  $('#shopSlideshowInner img').each(function(){
    var $this = $(this);
    var src = $this.attr('src');
    $this.wrap('<div style="background: url('+src+') no-repeat 50% 50%;width: 500px;height: 500px;" >');
  });
  
  $('#shopSlideshowInner').cycle({ 
      fx:     'fade', 
      speed:  'medium', 
      timeout: 0, 
      pager:  '#shopSlideshowNav',
      next:   '#shopSlideshowInner',
      pagerAnchorBuilder: function(idx, slide) { 
          return '#shopSlideshowNav li:eq(' + idx + ') a';
      } 
  });
}

$(document).ready(function(){
  
  $('#contactForm').validate();
  
  $('#name').DefaultValue("Name");
  $('#email').DefaultValue("Email");
  $('#subject').DefaultValue("Subject");
  $('#message').DefaultValue("Message");
  $('#search').DefaultValue("Enter search terms here...");
  $('#slideshow') 
  .before('<div id="slideshowNav">') 
  .cycle({ 
      fx:     'fade', 
      speed:  'slow', 
      timeout: 5000, 
      pager:  '#slideshowNav'
  });

  initShopSlideshow();
  
  $(".fancybox").fancybox();
  
  $('a[rel*=external]').click(function(){
  window.open(this.href);
  return false;
  });
  
});
