
// AME SCRIPTS FILE

$(document).ready(function(){


	// CTA IMAGE OPACITY FADE
	$(".cta a img").fadeTo(1, 0.33);

	$(".cta a img").hover(
		function(){$(this).fadeTo(500, 1);},
		function(){$(this).fadeTo(200, 0.33);
    });


	// CTA POPUP REVEAL
	
	$(".cta a").hover(
		function(){$(this).next("div").animate({opacity: "show", top: "-235"}, "slow");},
		function(){$(this).next("div").animate({opacity: "hide", top: "-245"}, "fast");
	});
	

	// CLIENT LOGOS CYCLE

    $('#client-logos').cycle({ 
    	fx:     'scrollDown',
		timeout:  5000

	});



});