// Site-wide javascript functions

//document load
jQuery(function($) {
	//initiate slideshows
	if($('.slideshow').length) {
		$('.slideshow').each(function(index) {
			$('<a>').attr({
				'class': 'slideshow-button previous previous-'+index,
				'href': 'javascript:;'
			}).appendTo(this);
			$('<a>').attr({
				'class': 'slideshow-button next next-'+index,
				'href': 'javascript:;'
			}).appendTo(this);
			$(this).slideshow({
			'previous': '.slideshow-button.previous-'+index,
			'next': '.slideshow-button.next-'+index
			});
		});
	}
});
