// -*- coding:utf-8 -*-

$(document).ready(function(){
	$("#leftcolumn").hide();

    $(window).load(function() {
	    startLeftColumnAnim();
	    
	}
	);
    });

function startLeftColumnAnim() {
    $("#leftcolumn").css("width", "0px");
    $("#leftcolumn").show();

    $("#leftcolumn").animate({width: "285px"}, 1000);
    return true; 
} 


