$(document).ready(function(){
	var photos = $("a[rel^='prettyPhoto']");
	if (photos.length > 0) {
		photos.prettyPhoto(
			{
					animationSpeed: 'fast',       /* fast/slow/normal */
					opacity:         0.75,        /* Value between 0 and 1 */
					showTitle:       false,       /* true/false */
					allowresize:     true,        /* true/false */
					default_width:   800,
					default_height:  600,
					theme:           'light_rounded', /* light_rounded / dark_rounded / light_square / dark_square / facebook */
					modal:           false,           /* If set to true, only the close button will close the window */
					counter_separator_label: '/'      /* The separator for the gallery counter 1 "of" 2 */
				}
	
		);
	}
});
