// JavaScript Document
$(document).ready(function() {
						   
	$('#testimonials .slide');
	setInterval(function(){
		$('#testimonials .slide').filter(':visible').fadeOut(2000,function(){
			if($(this).next('li.slide').size()){
				$(this).next().fadeIn(1000);
			}
			else{
				$('#testimonials .slide').eq(0).fadeIn(1000);
			}
		});
	},10000);	
						   
						   $("#lightbox a").lightBox({fixedNavigation:true});
						   $(".fadeDown").fadeTo(0, 0.4);

							$(".fadeDown").hover(function(){
						
									$(this).fadeTo(100, 1.0); // This sets the opacity to 100% on hover
						
							},function(){
						
									$(this).fadeTo(500, 0.4); // This sets the opacity back to 60% on mouseout
						
							});
							
});
