﻿

function setHome() {
    if (document.all) {
        document.body.style.behavior = 'url(#default#homepage)';
        document.body.setHomePage(window.location.href);
    }
    else
        alert("This Feature Is Not Available In FireFox");
}

function bookmarksite(title, url) {
    if (document.all)
        window.external.AddFavorite(url, title);
    else
        window.sidebar.addPanel(title, url, "");
}



$(document).ready(function() {
equalHeight($("#home-code-list .code-list"));




});

function equalHeight(group) {
    tallest = 0;
    group.each(function() {
        thisHeight = $(this).height();
        if (thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}




