(function($, undefined)
{
    $(function()
	{
		
		// Home page slideshow
		if ($('#scrollContainer').length)
        {
            $('#scrollContainer').cycle(
            { 
                fx: 'fade', 
                speed: 1000,
                timeout: 8000,
                pager:  '.navigation',
                
                // callback fn that creates a thumbnail to use as pager anchor 
                pagerAnchorBuilder: function(idx, slide) 
                { 
                    return '<li><a href="#">'+ $(slide).attr('title') +'</a></li>';
                } 
            });
        }
		
        //Center text
		
	});	    
})(jQuery);

