$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	$('.slideshow').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$('span.navigation_text').mouseover(function() {
		var clas = $(this).attr('id');
		var subnav = $('div.' + clas).html();
		$('div.dynamic_subnav').html(subnav);
	});
});