// JavaScript Document
$(function(){
    $('.gallery-vertical-nav li').each(function(){
        $(this).click(function(){
            $('#bigpicshow').attr('src', $('img', this).attr('src'));
			$('#bigpicshow a').attr('href', $('img', this).attr('src'));
			
            if ($('#bigpicshow').width() > 490) 
                $('#bigpicshow').width(490);
        });
    });
    if ($('#bigpicshow').width() > 490) 
        $('#bigpicshow').width(490);
	$('.zoom a').lightBox({
		imageLoading:			'/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/images/lightbox-blank.gif'		// (string) Path and the name of a blank image (one pixel)
		});

});

