/* Author: Anton vanHooydonk */

/* start main slideshow */
$(document).ready(function() {
	// Cycle
    $('#slideshow').cycle();

	// Make the sidebar prettier
	$('#sidebar .widget').wrap('<div class="panel-wrapper" />');

	// Pretty Photo
	$("a[rel^='gallery-image']").prettyPhoto({
		show_title: false,
		overlay_gallery: false,
	});
});

