//<![CDATA[
$(document).ready(function() {
    $('.gallery_image_thumb').click(function(){
        var tempStr = $(this).attr('id');
        var arr = tempStr.split('_');
        var imageName = arr[2];
        $("#gallery_main_image_portion").fadeOut('slow', function () {
            $('#gallery_main_image_portion').html('<img src="/wp-content/plugins/pxls-image-gallery/phpThumb/phpThumb.php?src=../gallery_images/' + imageName + '&w=513&h=295&far=C&bg=#00FFFF" border="0" alt="" title="" height="295" width="513" class="img_border" />');
        });
        $('#gallery_main_image_portion').fadeIn('slow');
        return false;
    });
});
//]]>
