// JavaScript Document
$(document).ready(function(){
$('.loader img').hide().delay(300).fadeIn("450");
$("#slideshow, #slideshow-mini").css("overflow", "hidden");
$("#slides ul, #slides-mini ul").cycle({ fx:'fade', pause: 1, prev:'.prev-img', next:'.next-img' });
$(".prev-img").css("opacity","1");$(".prev-img").hover(function () { $(".prev-img").stop().animate({ opacity:0 }, "slow"); }, function () { $(".prev-img").stop().animate({opacity:1}, "slow");
		});	
$(".next-img").css("opacity","1");$(".next-img").hover(function () { $(".next-img").stop().animate({ opacity:0}, "slow"); }, function () { $(".next-img").stop().animate({opacity:1}, "slow");
		});	

$(".fader img").css("opacity","0");$(".fader img").hover(function () {$(this).stop().animate({opacity: 1.0}, "fast");},function () {$(this).stop().animate({opacity: 0}, "fast");});
		
						   });
