/*
 * Joya Wren Site JavaScript
 * 2008 - Needmore Designs LLC
 * Relies on jQuery 1.2.6 and the jQuery Cycle Lite plugin
 */
$(function() {
  $('#mainimage').cycle({
    delay: 4000,
    speed: 250
  });
  $('#thumb1').hover(
    function() {$('#large1').fadeIn(100);},
    function() {$('#large1').fadeOut(100);}
  );
  $('#thumb2').hover(
    function() {$('#large2').fadeIn(100);},
    function() {$('#large2').fadeOut(100);}
  );
  $('#thumb3').hover(
    function() {$('#large3').fadeIn(100);},
    function() {$('#large3').fadeOut(100);}
  );
  $('#thumb4').hover(
    function() {$('#large4').fadeIn(100);},
    function() {$('#large4').fadeOut(100);}
  );
});
