/*
------------------------------------------------------------
global.js
Created by Tom Cunningham on 2011-08-02
------------------------------------------------------------
*/

$(document).ready(function(){

	$('#slides').cycle({
		fx: 'fade',
		speed: 1000,
		timeout: 5000,
		after: function(cur, next, opts) {
            $('#slides-nav ul')
              		.children('li')
                    .removeClass('selected')
            .end()
              		.children('li:eq('+opts.currSlide+')')
                    .addClass('selected');
        }
	});

	$('#home-slideshow #slides-nav a').click(function(){
		$('#slides').cycle($('#slides-nav a').index(this));
		return false;
	});
	
});
