$(document).ready(function() {
    $('#pages,div.mainBody').css('visibility','visible').hide().fadeIn(1000);

    $('#pages').cycle({
    	fx:				'scrollHorz',
    	timeout:		0,
    	prev:			'.prev',
    	next:			'.next',
    	speed:			500,
    	sync:			1,
    	nowrap:			true,
        pager:			'div#pager',

        pagerAnchorBuilder: function(idx, slide) {
            if(idx == 0) {
                return '<span><a href="#" class="panel">' + (idx + 1) + '</a></span>';
            }
            else {
                return '<span><a href="#" class="panel">&gt;' + (idx + 1) + '</a></span>';
            }
        }
    });

    $('#main-nav a:not(.active)').hover(function(){
        $(this).animate({opacity: '.7'}, 150)
    },function(){
        $(this).animate({opacity: '1'}, 150)
    });
});
