// Javascript to generate social buttons on web page.
// page url and title pulled from current url and document title
// last modified 01/20/2009
// by T. Majewski - Wakatobi IT
//
	var sharecode=new Array()
	//sharename[1]='delicious';
	//sharename[2]='facebook';
	//sharename[3]='furl';
	//sharename[4]='diggit';
	//sharename[5]='stumbleit';
	//sharename[6]='simpy';
	//sharename[7]='reddit';
	//sharename[8]='google';
	//sharename[9]='Yahoo';
	//sharename[10]='Myspace';
	//sharename[11]='Mixx';
	var urlstr=location.href;
	var tt=document.title;
	var i=null;
		sharecode[1]='http://del.icio.us/post?url='+urlstr+'&amp;title='+tt;
		sharecode[2]='http://www.facebook.com/sharer.php?u='+urlstr+'&amp;t='+tt;
		sharecode[3]='http://www.furl.net/storeIt.jsp?t='+tt+'&amp;u='+urlstr;
		sharecode[4]='http://digg.com/submit?phase=2&url='+urlstr+'&amp;title='+tt;
		sharecode[5]='http://www.stumbleupon.com/submit?url='+urlstr+'&amp;title='+tt;
		sharecode[6]='http://www.simpy.com/simpy/LinkAdd.do?url='+urlstr+'&amp;title='+tt;
		sharecode[7]='http://reddit.com/submit?url='+urlstr+'&amp;title='+tt;
		sharecode[8]='http://www.google.com/bookmarks/mark?op=edit&bkmk='+urlstr+'&title='+tt;
		sharecode[9]='http://myweb2.search.yahoo.com/myresults/bookmarklet?t='+tt+'&u='+urlstr;
		sharecode[10]='http://www.myspace.com/Modules/PostTo/Pages/?t='+tt+'&amp;u=' +urlstr;
		sharecode[11]='http://www.mixx.com/submit?page_url='+urlstr+'&amp;title='+tt;
		
document.write('<table border=0 cellspacing=0 cellpadding=3><tr><td colspan=7><span class="mini">Share this!</span></td></tr>');
document.write('<tr><td><a href="' + sharecode[1] + '" target="share"><img border=0 alt="share this on Delicious" src="/graphics/delicious.gif"></a></td>');
document.write('<td><A href="' + sharecode[2] + '"target="share"><img border=0 alt="share this on Facebook" src="/graphics/facebookcom.gif"></td>');
document.write('<td><a href="' + sharecode[3] + '"target="share"><img border=0 alt="share this on Furl" src="/graphics/furl.gif"></a></td>');
document.write('<td><a href="' + sharecode[4] + '"target="share"><img border=0 alt="share this on Digg" src="/graphics/digg.gif"></a></td>');
document.write('<td><a href="' + sharecode[5] + '"target="share"><img border=0 alt="share this on Stumble Upon" src="/graphics/stumbleit.gif"></a></td>');
document.write('<td><a href="' + sharecode[6] + '"target="share"><img border=0 alt="share this on Simply" src="/graphics/simpy.png"></a></td>');
document.write('<td><a href="' + sharecode[7] + '"target="share"><img border=0 alt="share this on Reddit" src="/graphics/reddit.gif"></a></td>');
document.write('<td><a href="' + sharecode[8] + '"target="share"><img border=0 alt="share this on Google" src="/graphics/googleit.gif"></a></td>');
document.write('<td><a href="' + sharecode[9] + '"target="share"><img border=0 alt="share this on Yahoo" src="/graphics/yahoomyweb.jpg"></a></td>');
document.write('<td><a href="' + sharecode[10] + '"target="share"><img border=0 alt="share this on Myspace" src="/graphics/myspace.gif"></a></td>');
document.write('<td><a href="' + sharecode[11] + '"target="share"><img border=0 alt="share this on Mixx" src="/graphics/mixx.gif"></a></td>');
document.write('</tr></table>');
