$(document).ready(function(){
  $('#cycle_area').cycle({
		fx: 'scrollHorz',
		speed: 500,
		timeout: 0,
		pager: '#PortfolioList',
		pagerAnchorBuilder: showLinks,
		easing: 'easeInOutCubic',
		pause: true,	
		prev: '#cycle_prev',
		next: '#cycle_next'
	});			
		
});

function showLinks(i, elem){
	title = $(elem).find('h2').text();
	html = '<ul><a href="#" title="' + title + '"><li>' + title + '</li></a></ul>';
	return html
}


//Working on using thumbnails. Not complete. 
//function showLinks(i, elem){
//	src = $(elem).find('img').attr('src');
//	title = $(elem).find('h2').text();
//	html = '<ul><li class="PSthumb-bg"><a href="#" title="' + title + '"><img src="' + src + '" width="50" height="50" alt="'+ title +'" /></a><a href="#" title="' + title + '">' //+ title + '</a></li></ul>';
//	return html
//}

