﻿(function($j){

	Code.registerNamespace('Website.Pages');

	Website.Pages.Homepage = {	
	
		hidePanel: function(){
			var self = this;
			$j('.tabbed-panel-hide').hide();
		},	
			
		onReady: function(){
			var self = this;
			$j('#newscarousel').append('<a href="#" class="next">Next</a>').prepend('<a href="#" class="previous">Previous</a>');
			$j('#newscarousel').loopedCarousel({ vertical: true, autoStart: 4500 });
			$j('.scroll-cta').CodeCarousel();
			$j('.scroll-cta').addClass("scroll-cta-js");
			$j('.tabbed-content .tabs li a').click(function(event) {
				var _tabbedContainerToShow = $j(this).attr('class');
				$j('.tabbed-content').hide();
				$j('div.'+_tabbedContainerToShow).show();
				return false;
			});
		}

	};

	$j().ready(function(){
		Website.Pages.Homepage.onReady();
		Website.Pages.Homepage.hidePanel();
	});


})(jQuery);	

