// JavaScript Document
/*$(function() {
	$('#portfolio').cycle({ 
		fx:     'fade', 
		speed:  '1000', 
		timeout: 5000, 
		prev: '#prev',
		next: '#next',
		pager:  '#nav-image', 
		 
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
				return '<li><a href="#"><img src="' + slide.src + '" width="64" height="64" /></a></li>'; 
		} 
	}); 
});*/
// JavaScript Document
$(function() {
	$('#portfolio').cycle({ 
		fx:      'fade', 
		timeout:  0,
		speed:   250,	
		pager:   '#nav-image',
		pagerAnchorBuilder: function(idx, slide) {
				return '<li><a href="#"><img src="' + slide.src + '" width="57" height="47" /></a></li>';
		}
	});
});

function buildCarousel() {	
		$(".carousel").jCarouselLite({
        btnNext: ".next",
        btnPrev: ".prev",
				visible: 8,
				scroll: 3,
				circular: false
				});
}
