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


$(document).ready(function(){
    $.cookies.del(true);
    var cHeight = $("#container").height();
    var sHeight = $("#sidebar").height();
    if(cHeight > sHeight) {
        $("#sidebar").height(cHeight -5);
    }
    else {
        $("#container").height(sHeight + 5);
    }
    
    if($.cookies.get('narrow') == '1') {
       if($(window).width() < 950) {
            $("#sidebar").width(190);
        }
        else {
            $.cookies.replace("narrow",0);
        }
    }
    else {
       if($(window).width() < 950) {
           $.cookies.set("narrow",1);
       }
    }
});

