function initProjectGallery()
{
	$(".thumbImage").click(function()
    {
        if(pp_alreadyInitialized)
        {
            $(".gallery:first a:first").trigger('click');
        }
        else
        {
            $(".gallery:first a[rel^='prettyPhoto']").prettyPhoto({animation_speed:'normal',theme:'dark_square',slideshow:3000, deeplinking: false, social_tools:''});
            $(".gallery:first a:first").trigger('click');
            pp_alreadyInitialized = true;
        }
        return false;
        }

    );
}
