var langHeight;
var z = 0;
var intervalID;

function setSizes() {
    langHeight = $("#langCont").innerHeight() + 3;
}
function timer() {
    z++;
    if(z >= 10) {
        $("#lang").animate({height:16}, 500);
        z = 0;
        clearInterval(intervalID);
    };
}

$(document).ready(function(){

    //engine body
    $("#lang").hover(
        function(){
            $(this).animate({height:langHeight}, 500);
            z = 0;
            clearInterval(intervalID);
        },
        function(){
            intervalID = setInterval(timer, 50);
        }
    );


});



function openPopUp(id) {
    window.open('/item/'+id+'/','window1', 'width = 700, height = 650, resizable=1, scrollbars=1');
}

function openPopPrint() {
    window.open('/notepad/print/','window2', 'width = 800, height = 600, resizable=1, scrollbars=1');
}
