function NewButtons() {
	this.domain=location.href+'/';
	this.domain=this.domain.substr(this.domain.indexOf('://')+3);
	this.domain=this.domain.substr(0,this.domain.indexOf('/'));
	this.location=false;
	this.selection=function() {
		var sel;
		if (window.getSelection) sel=window.getSelection();
		else if (document.selection) sel=document.selection.createRange();
		else sel='';
		if (sel.text) sel=sel.text;
		return encodeURIComponent(sel);
	}
	this.url=function(system) {
		var title=encodeURIComponent(document.title);
		var url=encodeURIComponent(location.href);
		switch (system) {
			case 1: return 'http://vkontakte.ru/share.php?url='+url;
			case 2: return 'http://www.facebook.com/sharer.php?u='+url;
			case 3: return 'http://twitter.com/home?status='+title+' '+url;
			case 4: return 'http://www.livejournal.com/update.bml?event='+url+'&subject='+title;
			case 5: return 'http://www.odnoklassniki.ru/dk?st.cmd=addShare&st.s=1&st._surl='+url;
			case 6: return 'http://my.ya.ru/posts_add_link.xml?URL='+url+'&title='+title;
			case 7: return 'http://connect.mail.ru/share?share_url='+url;
			case 8: return 'http://www.google.com/bookmarks/mark?op=add&bkmk='+url+'&title='+title;
			case 9: return 'http://memori.ru/link/?sm=1&u_data[url]='+url+'&u_data[name]='+title;
			case 10: return 'http://www.100zakladok.ru/save/#'+url+';'+title;
			case 11: return '#';
		}
	}
	this.redirect=function() {
		if (this.location) location.href=this.location;
		this.location=false;
	}
	this.go=function(i) {
		window.open(this.url(i));
		//location.href=this.url(i);
		return false;
	}
	this.init=function() {
		var titles=new Array(
							'&#1042; &#1050;&#1086;&#1085;&#1090;&#1072;&#1082;&#1090;&#1077;', // 1 Вконтакте
							'Facebook', // 2 Facebook
							'Twitter', // 3 Twitter
							'LiveJournal', // 4 LiveJournal
							'Odnoklassniki.ru',
							'&#1071;&#1085;&#1076;&#1077;&#1082;&#1089;.&#1047;&#1072;&#1082;&#1083;&#1072;&#1076;&#1082;&#1080;', // 5 Яндекс.Закладки
							'&#1052;&#1086;&#1081; &#1052;&#1080;&#1088;', // 6 Мой Мир
							'&#1047;&#1072;&#1082;&#1083;&#1072;&#1076;&#1082;&#1080; Google', // 7 Закладки Google
							'Memori', // 8 Memori
							'100zakladok.ru', // 9 БобрДобр
							'E-Mail' // 10 E-Mail
						);
		var html='';
		for (i=0;i<10;i++) {
			html+='<a href="'+this.url(i+1)+'" onclick="return buttons.go('+(i+1)+');"><img src="/template/expo/public/images/blank.gif" width="24" height="24" alt=" #" title="'+titles[i]+'" style="border:0;padding:0;margin:0 4px 0 0;background:url(/template/expo/public/images/buttons.jpg) no-repeat 0 -'+(i*24)+'px"/></a>';
		}
		html+='<a href="#" onclick="window.open(\'/friendmail.php?uri='+encodeURIComponent(location.href)+'\', \'emailtofriend\', \'width=350,height=250\')"><img src="/template/expo/public/images/blank.gif" width="24" height="24" alt="E-Mail" title="E-Mail" style="border:0;padding:0;margin:0 4px 0 0;background:url(/template/expo/public/images/buttons.jpg) no-repeat 0 -240px"/></a>';
		document.write(html);
	}
}
buttons=new NewButtons();
buttons.init();
