/**
 * Functionality specific to the Home page 
 *
 */
 
// init the local namespace. All functions should be part of this namespace
var $tcc = window.$tcc || {};

$(document).ready(function() {

	// Set up homepage brands slider
	$('#mycarousel').jcarousel({
	// Configuration goes here
		visible: 7,
		scroll: 7,
		wrap: 'circular'
	});
	
	// Set up homepage accordion
	$("#homeAccordion").liteAccordion({ 
	    containerWidth : 930, 
	    containerHeight : 398,
	    headerWidth: 15,
	    slideSpeed : 400,
	    autoPlay: true,
	    cycleSpeed: 8000
	});

});
