
$(document).ready(function(){
// Uncomment this alert and change the message as needed.
// alert ("CLF SYSTEM ALERT! \nSorry, our systems are currently down. \nWe are working to fix the problem and it \nshould all be working again shortly."); 

// SLIDES on front page
$(".slidetabs").tabs(".images > div", {
	effect: 'fade',
	fadeOutSpeed: "slow",
	rotate: true
}).slideshow({
interval: 8000,
autoplay: true,
autopause: true,
clickable: false
});

// OPACITY HOVER ANYWHERE
$('.fadehover img').css({opacity: 0.7});
$('.fadehover').hover(function(){
  $('img', this).css({opacity: 1});
 }, function() {
  $('img', this).css({opacity: 0.7});
 });

});


