$(function() {
    $('#photos').cycle({
        speed: 1,
        timeout: 0,
		before: onBefore,
        pager: '#thumbnails',
        pagerAnchorBuilder: function(idx, slide) {
            return '#thumbnails li:eq(' + (idx) + ') a';
        }
    });
	
	function onBefore() {
        $('#style_name').html(this.alt);
	}
});