// JavaScript Document
/*
			$("a[rel^='prettyPhoto']").prettyPhoto({showTitle:false});
				$('ul.gallery:first').prettyGallery({itemsPerPage:6,animationSpeed:'slow'});
				$('ul.textGallery').prettyGallery({itemsPerPage:6,navigation:'bottom'});
				$('ul.gallery:eq(1)').prettyGallery({itemsPerPage:6,navigation:'both',animationSpeed:'fast'});
*/	
		
$(document).ready(function(){
			$("ul.gallery").prettyGallery({
				itemsPerPage : 4,
				animationSpeed : 'normal', /* fast/normal/slow */
				navigation : 'bottom',  /* top/bottom/both */
				of_label: ' de ', /* The content in the page "1 of 2" */
				previous_title_label: 'Pàgina anterior', /* The title of the previous link */
				next_title_label: 'Pàgina següent', /* The title of the next link */
				previous_label: 'Anterior', /* The content of the previous link */
				next_label: 'Següent' /* The content of the next link */
			});
//		
//
	$("a[rel^='prettyPhoto']").prettyPhoto();
//		
		});

