(function($){
	$(document).ready( function() {
								
		lastBlock = $("#cta-data");
        maxWidth = 466;
        minWidth = 248;

        $(".cta").hover(
    	  function () {
    	      $(lastBlock).animate({ width: minWidth + "px" }, { queue: false, duration: 400 });
    	      $(this).animate({ width: maxWidth + "px" }, { queue: false, duration: 400 });
    	      lastBlock = this;
    	  }
    	);
		
		$('#banner').cycle();
		
	});
})(jQuery);
