/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

$(document).ready(function(){
    var navheight = $('#top-ul').height();
    var colmainheight = $('#col-main-new').height();
    if( navheight > colmainheight ){
        $('#col-main-new').css('height',navheight+'px');
    }

    $("#logo").click(function(){
        window.location.href= '/';
    });
    $("#header-banner img").click(function(){
        window.location.href= '/';
    });
});

