/* - prettyPhoto.js - */
jq(document).ready(function(){
            jq(document).ready(function(){
                // add rel tag for all links with class 'prettyPhoto'
                jq("a.prettyPhoto").attr({"rel": "prettyPhoto"});

                // add iframe attributes for all links with class 'prettyPhotoIframe'
                jq("a.prettyPhotoIframe").attr("href", function() {
                    return this.href + "?iframe=true&width=75%&height=75%";
                }).attr({"rel": "prettyPhoto"});

                // enable prettyPhoto
                jq("a[rel^='prettyPhoto']").prettyPhoto({
                    animationSpeed: 'normal', /* fast/slow/normal */
                    opacity: 0.80, /* Value between 0 and 1 */
                    showTitle: true, /* true/false */
                    counter_separator_label: '/', /* The separator for the gallery counter 1 "of" 2 */
                    theme: 'light_rounded',
                    autoplay: true /* Automatically start videos: True/False */
                });
            });
        });
        

