// JavaScript Document
function postToMagnolia() {
	var m='';
	var d='';
	var metas=document.getElementsByTagName('meta');
	for(count=0;count<metas.length;count++){
		if(metas[count].name=='description'){
			m=metas[count].content;
		}
	};
	if(m!=''){
		d=encodeURIComponent(m);
	}
	location.href='http://ma.gnolia.com/bookmarklet/add?url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title)+'&description='+d;
}
