jQuery(document).ready(function(){
	
	// local array var for preloading the images
  var cache = [];
  // preLoadImages: arguments are image paths relative to the current page
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
  // preload the images
  jQuery.preLoadImages(
    '/img/showcase/shots/client_screenshot_1.png',
    '/img/showcase/shots/client_screenshot_2.png',
    '/img/showcase/shots/client_screenshot_3.png',
    '/img/showcase/shots/client_screenshot_4.png',
    '/img/showcase/shots/client_screenshot_5.png'
  );
  // loop over the images and append them to the showcase
  for (var i = 1; i <= 5; i++) {
  $('#big-note').append(
    '<img class="shot" src="/img/showcase/shots/client_screenshot_'+ i +'.png" height="259" width="386" alt="[screen shot]">'
  );
  }
  // cycle the images
  $('#big-note').cycle({
    speed: 2000,
    timeout: 8000
  });
	
  //replace the email text w/ a working email link
  var real_email = 'billee@obxdesignworks.com';//actual email address
  //replace it
  jQuery('body#how #contact-email').replaceWith('<a class="email" id="contact-email" href="mailto:'+real_email+'" title="Email Outer Banks Design Works">'+real_email+'</a>');
  
  //
  jQuery('body#how #article iframe#iframe-form-contact').hide();
  
  jQuery('body#how #article #toggle-form').click(function(){
    jQuery('body#how #article iframe#iframe-form-contact').toggle();
    return false;
  });
	
});
