/**
 * Home Scripts
 *
 * Any Javascripts that run on the homepage go here.
 *
 * -----------------------------------------------------------
 *
 * @author			Barry Malcolm Harley
 * @version			1.0.0
 * @copyright		Copyright (c) 2011 ZootAlore! Creative
 *
 */

/**
 * On Home Load
 * Scripts that run when the page has loaded go here
 *
 * @author 	Barry Malcolm Harley
 * @return 	void
 */ 
$(function() {
	$('#mycarousel li').show();
	$('#mycarousel').jcarousel({
        vertical:true,
        scroll: 1,
		auto:12,
		wrap:'circular',
		initCallback: mycarousel_initCallback
    });
});

function mycarousel_initCallback(carousel)
{
    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
        carousel.stopAuto();
    }, function() {
        carousel.startAuto();
    });
};
