﻿
var showImage = function(src, text) {
    $('#flash').hide();
    $('#image').attr('src', src);
    $('#imageHolder').show();
    $('#description').html(text.replace(/\x5Bbr\x5D/g, '<br/>'));
    $('#image').click(function() {
        $('#imageHolder').hide();
        $('#flash').show();
    });
}

var showImage = function(src, text, id) {
    //alert($("img[src*=" + id + "]").attr('title', 'ok'));
$('#flash').hide();
$('#image').attr('src', src);
$('#imageHolder').show();
$('#description').html(text.replace(/\x5Bbr\x5D/g, '<br/>'));
$('#image').click(function() {
    $('#imageHolder').hide();
    $('#flash').show();
});
}

var sh = function(menuId) {
    menuId = '#' + menuId;
    $('.vertical-menu').each(function() {
        if (('#' + $(this).attr('id')) != menuId && $(this).css('display') != 'none') {
            $(this).css('display', 'none'); //.slideUp();
            return false;
        }
    });
    if ($(menuId).css('display') == 'none') {
        $(menuId).css('display', ''); //.slideDown();
    } else {
        $(menuId).css('display', 'none')//.slideUp();
    }
}