jQuery(document).ready(function() {
    if (typeof GoogleMapShow == 'function')
    {
        GoogleMapShow();
    }
    $('#billboard').royalSlider({
        imageAlignCenter: true,
        hideArrowOnLastSlide: true,
        slideshowEnabled: true,
        controlNavEnabled: true,
        slideshowDelay: 5000
    });
    
    var intHeaderWidth = $('#header').width();
    var intNavWidth = $('#nav ul').width();
    var intDiff = parseInt((intHeaderWidth - intNavWidth) / 2, 10)
    $('#nav ul').css({ paddingLeft: intDiff + 'px' });

    $('a[href$=.jpg],a[href$=.jpeg],a[href$=.png]', '#content').lightBox({
        imageBlank: '/_images/lightbox-blank.gif',
        imageLoading: '/_images/lightbox-ico-loading.gif',
        imageBtnClose: '/_images/lightbox-btn-close.gif',
        imageBtnPrev: '/_images/lightbox-btn-prev.gif',
        imageBtnNext: '/_images/lightbox-btn-next.gif'
    });
    
});

