$(document).ready(function() {
			 var moreLess = "more";
		
		$("#Favmore").click(function(){
			if(moreLess == "more"){
				$("#ScrollableIcons").animate({ 
					width: "210px"
				}, 800 );
				$("#Favmore").html("<img src='images/addfav/lessarrow.gif' width='8' alt='less' height='12' />");
				moreLess = "less";
			}else if(moreLess == "less"){
				$("#ScrollableIcons").animate({ 
					width: "87px"
				}, 800 );
				$("#Favmore").html("<img src='images/addfav/morearrow.gif' width='8' alt='more' height='12' />");
				moreLess = "more";
			}
	 		return false;
    	});
		// Load favourites windows
		$("#Delicious").click(function(){
			window.open('http://del.icio.us/post?v=4&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title), 'delicious','toolbar=no,width=700,height=400');
			return false;
		});
		$("#Digg").click(function(){
			window.open('http://digg.com/submit?v=4&amp;noui&amp;jump=close&amp;url='+encodeURIComponent(location.href)+'&amp;title='+encodeURIComponent(document.title), 'digg','toolbar=no,width=800,height=600');
			return false;
		});
		$("#FB").click(function(){
			window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(location.href)+'&amp;t='+encodeURIComponent(document.title), 'facebook','toolbar=no,width=800,height=500');
			return false;
		});
		$("#Twitter").click(function(){
			window.open('http://twitter.com/home?status='+encodeURIComponent(location.href)+'&amp;t='+encodeURIComponent(document.title), 'facebook','toolbar=no,width=800,height=500');
			return false;
		});
		$("#Fark").click(function(){
			window.open('http://cgi.fark.com/cgi/fark/farkit.pl?u='+encodeURIComponent(location.href)+'&amp;t='+encodeURIComponent(document.title), 'facebook','toolbar=no,width=800,height=500');
			return false;
		});
		$("#Google").click(function(){
			window.open('http://www.google.com/bookmarks?url='+encodeURIComponent(location.href)+'&amp;t='+encodeURIComponent(document.title), 'facebook','toolbar=no,width=800,height=500');
			return false;
		});
		$("#Yahoo").click(function(){
			window.open('http://bookmarks.yahoo.com/toolbar/savebm?opener=tb&u='+encodeURIComponent(location.href)+'&amp;t='+encodeURIComponent(document.title), 'facebook','toolbar=no,width=800,height=500');
			return false;
		});
	});		