/*************** home functions **********************/
(function ($) {
    $(document).ready(function () {
		$('#home-banner').cycle({
	    speed: 3000,
		timeout: 8000,
	    pager: '#home-banner-current',
	    next: '#home-banner-next',
	    prev: '#home-banner-prev'
		});
	});
	
    $(document).ready(function () {
        lastBlock = $("#home-cta-ship");
        maxWidth = 466;
        minWidth = 242;

        $(".home-cta").hover(
    	  function () {
    	      $(lastBlock).animate({ width: minWidth + "px" }, { queue: false, duration: 400 });
    	      $(this).animate({ width: maxWidth + "px" }, { queue: false, duration: 400 });
    	      lastBlock = this;
    	  }
    	);
    });
	
	$(document).ready(function() {
		$('.announcement:first').addClass('first-child');
	});
})(jQuery);
