/**
 * ...
 *
 * @author Sebastian Bielawski
 * @copyright Netface (c) 2010, http://www.netface.pl
 */

$(document).ready(function(){
    var prettyRel = $("a[rel^='prettyPhoto']");
    if (prettyRel.length > 0) {
        prettyRel.prettyPhoto({theme: 'facebook', showTitle: false});
    }

    var prettyClass = $("a.prettyPhoto");
    if (prettyClass.length > 0) {
        prettyClass.prettyPhoto({theme: 'facebook', showTitle: false});
    }
});
