/********************************************

THP Homepage Marquee Module
Required Plugins: cycle
Author: Poccuo (http://www.poccuo.com)        	

*******************************************/


$(document).ready(function(){
	
	$('#marquee #slides_wrapper').cycle({ 
		fx: 'fade', 
		speed: 400, 
		timeout: 6000,
		pager:  '#marquee .thumbnails', 
     
		// callback fn that creates a thumbnail to use as pager anchor 
		pagerAnchorBuilder: function(idx, slide) { 
			var thumbnail_path = $(slide).attr('thumbnail');
			return '<a href="#"><img src="' + thumbnail_path + '" width="50" height="50" /></a>'; 
		} 
    
	});

});


