/* ------------------------------------------------------------------------
	Local pretty.Photo SETTINGS
	Author: Liviu T
------------------------------------------------------------------------- */

function load_prettyPhoto(){
    jQuery(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({
            animation_speed:'fast',
            deeplinking: false,
            slideshow:7000,
            hideflash: true
        });
        
    jQuery(".gallery:gt(0) a[rel^='prettyPhoto']").prettyPhoto({
            animation_speed:'fast',
            deeplinking: false, 
            slideshow:7000,
            hideflash: true
        });
}

jQuery(document).ready(function(){	   
    load_prettyPhoto();
});
