/* 
 * @About      : Javascript file for custom jQuery functions.
 * @File       : jquery.vcom.css
 * @Version    : 1.0
 * @Author     : vcommunications
 */
jQuery(document).ready(function()
{
    (function($)
    {
        jQuery('img.thumb_small').each(function(){
            $(this).bind ('click',
                function()
                {
                    var str_src = jQuery(this).attr('src');
                    var str_title = jQuery(this).attr('alt');
                    jQuery('#thumb_big').attr('src', str_src).attr('title', str_title);
                    jQuery('.gallery_desc').html("<p>"+ str_title +"</p>");
                    return false;
                }
            );
        });
    })(jQuery);
});
