﻿
//-----------------------------------------
function PlaceIcon() {
    document.write('<div id="Layer1" style="'
        + 'position: absolute;'
        + 'left:' + 42 + 'px;'
        + 'top:' + 0 + 'px;'
        + 'width:' + 322 + 'px;'
        + 'height:' + 84 + 'px;'
        + 'z-index: 1;" >');

    document.write('<a href="/">');
    document.write('<img src="../images/logo.gif" alt="Alef Bet Judaica" style="'
        + 'width:' + 322 + 'px;'
        + 'height:' + 84 + 'px;'
        + 'border:' + 0 + 'px;'
        + 'align: left;" />');
    document.write('</a>');
    document.write('</div>');
}

//-----------------------------------------
function PlaceServiceMessage() {
    document.write('<div class="tagline" id="Layer2" style="'
    + 'position: absolute;'
    + 'left:' + 265 + 'px;'
    + 'top:' + 7 + 'px;'
    + 'width:' + 292 + 'px;'
    + 'height:' + 82 + 'px;'
    + 'z-index:' + 2 + ';'
    + 'text-align: right;'
    + 'vertical-align: bottom;'
    + 'font-weight: normal" >');
    document.write('<br /><br /><br /><br />Serving the community'
    + ' since <span style="font-weight:bold"> 1993</span>');
    document.write('</div>');
}

//-----------------------------------------
function PlaceMenuBar() {
    document.write('<div id="styleMenu" title="menu">');
    new menu(MENU_ITEMS, MENU_TPL);
    document.write('</div>');
}

//-----------------------------------------
function shortAddress() {
    document.write('<div id="shortAddress">');
    document.write('<p>');
    document.write('Vasona Station Shopping Center<br />');
    document.write('14103-D Winchester Blvd., Los Gatos, CA 95032<br />');
    document.write('(408) 370-1818, &nbsp <a href="mailto:alefbetjudaica@msn.com">alefbetjudaica@msn.com</a>');
    document.write('</p>');
    document.write('</div>');
}

//-----------------------------------------
function placeEnlargeMsg(){
    document.write('<span id="globalEnlargeMsg">click any image to enlarge</span>');
}

//-----------------------------------------
function placeOlEnlargeMsg() {
    document.write('<span id="globalEnlargeMsg">click image to enlarge</span>');
}

//--------- Replace Large Image -------------
function setLargImg(iD, path) {
    $(iD).mouseover(function() {
        $('#largeImg').attr('src', path);
    })
}

//-----------------------------------------
/*
function slideShow()
{
    $(function(){
	    $('.styleImg img:gt(0)').hide();
	    setInterval(function(){$('.styleImg :first-child')
	    .fadeOut()
	    .next('img')
	    .fadeIn()
	    .end()
	    .appendTo('.styleImg');
	}, 3000); // 3000
    });
}
*/

