// JavaScript Document
$(document).ready(function() {
    $('#slideshow')
	  .cycle({ 
	  slideExpr:'.slide',
    fx: 'fade',
    speed: '1000',
    timeout: 7333,
    sync:1,
  	cleartypeNoBg: true
    });


jQuery('ul.thumbs li a img').css({ opacity: 0.8 });

jQuery('ul.thumbs li a img').hover (
function() {
  jQuery(this).stop(true, true).animate({ opacity: 1.0 }, 200);
},
function () {
  jQuery(this).stop(true, true).animate({ opacity: 0.8 }, 600);
	});


});

