$(document).ready(function(){

    $('#zoomin-button').click(function(){
        contentLeftBig();
    })
    $('#zoomout-button').click(function(){
        contentLeftSmall();
    })
})
function contentLeftBig(){
    $('#contentRight').hide();
    $('#contentLeft').css({
        width : '730px'
    });
    $('#zoomin-button').hide();
    $('#zoomout-button').show();
}
function contentLeftSmall(){
    $('#contentLeft').css({
        width : '550px'
    });
    $('#contentRight').show();
    $('#zoomin-button').show();
    $('#zoomout-button').hide();
}
function divTitleHelper(){
    $("div[title],a[title]").tooltip({
        position: "bottom right",
        // a little tweaking of the position
        offset: [-5, 10],
        // use the built-in fadeIn/fadeOut effect
        effect: "fade",
        // custom opacity setting
        opacity: 0.8
    });
}
function titleHelper(){
    $("input[title], textarea[title]").tooltip({
        position: "center right",
        // a little tweaking of the position
        offset: [-2, 10],
        // use the built-in fadeIn/fadeOut effect
        effect: "fade",
        // custom opacity setting
        opacity: 0.7
    });
}



