		jQuery(document).ready(function() {
		    jQuery('#mycarousel').jcarousel({
		    	scroll: 1,
		    	animation: 'slow',
		    	auto: 15,            
		    	wrap: 'circular'	    		
		    });
		});


$(function() {
    $('#slideshow').cycle({
        //fx:      'scrollHorz',
		fx:      'fade',
        timeout:  5000,
        pager:   '#portf_nav',
        pagerAnchorBuilder: pagerFactory,
		before: function() {  
            $('.img_description').html(this.alt); 
        } 
    });

    function pagerFactory(idx, slide) {
        var s = '';//idx > 2 ? ' style="display:none"' : '';
        return '<li'+s+'><a href="#">'+'</a></li>';//(idx+1)+
    };
    
});

