// Home Page Slider View All Options Here http://malsup.com/jquery/cycle/options.html
$(document).ready(function(){
    
	$('#slideshow').cycle({
        fx:     'fade',
		easing: 'easeInCubic',
		speed:	1000,
        timeout: 3000, // Speed to Auto Slide   Set to 0 for manual control
        after: setWidth,
        before: setWidth,
        pager:  '#slide-navigation',
        pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#slide-navigation li:eq(' + (idx) + ') a';
        }
    });
});

function setWidth() {
    $('.slides-item').css({width : '960px'});
}


	
