jQuery(document).ready(function($) {
	var modalid = randomString(5);
	$('.portfolio li a img, .blog-content a img, .sh_lastpost_imagelink a img, .sh_fp_box a img').not('.nomodal').parent().attr('rel','gallery[photo'+modalid+']');
	$('.sh_lightbox').each(function(){
		var modalsh = randomString(5);
		$(this).find('a img').parent().attr('rel','gallery[photo'+modalsh+']');
	});
	$('.portfolio li a img, .blog-content a img, .sh_lightbox a img, .sh_lastpost_imagelink a img, .sh_fp_box a img').not('.nomodal').parent().prettyPhoto({theme:'light_rounded', autoplay: true, opacity:0.4, show_title: false});
});

