$(document).ready(function(){   
	initMenu();

});

function initMenu() {
	el = $(".col-slide");
	// slide from top
	el.css("left","-1000px");
	$(".col-slide").animate({ 
		left: 0
   }, 1200, "swing" );
}

