// JavaScript Document
$(document).ready(function(){
	//$("a[rel^='prettyPhoto']").prettyPhoto();
	
	$("a[rel^='prettyPhoto']").prettyPhoto({
		/* fast/slow/normal */
		animationSpeed: 'fast', 
		/* padding for each side of the picture */
		padding: 40, 
		/* Value betwee 0 and 1 */
		opacity: 0.45, 
		/* true/false */
		showTitle: true,
		/* true/false */
		allowresize: true,
		/* The separator for the gallery counter 1 "of" 2 */
		counter_separator_label: '/', 
		/* light_rounded / dark_rounded / light_square / dark_square */
		theme: 'light_rounded', 
		callback: function(){

		}
	});
	$("a[class^='prettyPhoto']").prettyPhoto({
		/* fast/slow/normal */
		animationSpeed: 'fast', 
		/* padding for each side of the picture */
		padding: 40, 
		/* Value betwee 0 and 1 */
		opacity: 0.45, 
		/* true/false */
		showTitle: true,
		/* true/false */
		allowresize: true,
		/* The separator for the gallery counter 1 "of" 2 */
		counter_separator_label: '/', 
		/* light_rounded / dark_rounded / light_square / dark_square */
		theme: 'light_rounded', 
		callback: function(){

		}
	});
});
