$(document).ready(function() {

	$('.slideshow').cycle({height: 420});
	
	$(".images_popup:img").each(function() {

	
		
		
		var thumb = $("<div></div>").append( $(this).clone() ).html();
		var large = this.src.replace( /thumb/ ,	'large' ) ;
		var large = large.replace( /normal/ ,'large' ) ;
		var large = large.replace( /medium/ ,'large' ) ;

		

		
		$(this).replaceWith('<a href="'+large+'" rel="prettyPhoto" >'+thumb+'</a>');

	}
)

$("a[rel^='prettyPhoto']").prettyPhoto();	
});