function download(e){
    e.preventDefault();  //stop the browser from following
	file = $(e).attr('rel');
    window.location.href = file;
	alert('test');
}
