
$('.headlines').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});


$(document).ready(function() {
 $('li.firstnav').mouseover(function(){
        $('img.hoverbg').stop(true).animate({marginLeft: '400px'},500)
		queue:false
       })
.mouseleave(function(){
        $('img.hoverbg').stop(true).animate({marginLeft: '170px'},500)
		queue:false
       })








$(document).ready(function()
{

	$(".cta").css('opacity', 0.90);

	$(".cta").hover
		(
			function()
			{
				$(this).animate({opacity: 1.0}, 300 );
 
			},
			
			function()
			{
				$(this).animate({opacity: 0.90}, 300 );
			}
		);


});
});


