$(document).ready(function(){
		$('#gallery').cycle({
			fx:     'scrollHorz',
			timeout: 7000,
			pager:  '#galnav',
			pagerAnchorBuilder: function(idx, slide) {
				return '<div class="thumb"><img src="' + slide.src + '" alt="Photo Thumb" width="60"/>';
			},
			easing:  'backinout'
		});
		
		$('div.thumb').hover(
			function(){
				$(this).css({"opacity":"1.0"});
				$(this).css({"filter":"alpha(opacity=100)"});
			},
			function(){
				$(this).css({"opacity":"0.4"});
				$(this).css({"filter":"alpha(opacity=40)"});
			}
		);
});
