function init()
{
	wst.get('#downloadsList a').on('click', function(evt){
		evt.preventDefault();

		var fileName = this.href.split('#')[1];
		window.location.href = wst.format('/download/?#{1}', fileName);
	});
}