		$(function(){
		
			$('.gallerybox .item').each(function() {
			
				var cont = $(this).find('.html').html();
				
				$("a[rel^='prettyPhoto']").prettyPhoto({
					slideshow:5000,
					slideshow:false,
					social_tools: cont
				});
				
				var hash = location.hash;
					 hash = hash.substring(1,1000);
				
				if(hash != '' && $('.gallery'+hash).length != 0) {
					$('.gallery'+hash).find('a:first').trigger('click');
				}
				
			});

		});

