$(document).ready(function() {
	
		$("body").append('<div id="div_slwd_sidebar" style="border: 1px solid gray; border-left: 0px; font-family: Arial; font-size: 10px; background-color: #DAFF5F;"><table style="border: 1px solid white;" cellspacing="0" cellpadding="0"><tr><td id="td_slwd_sb_logo" style="height: 30px; padding-right: 4px; padding-left: 4px;"><img src="http://www.samulilindgren.net/v4/clock.gif" height="20" align="absmiddle" /></td><td id="td_slwd_sb_element" style="display: none; padding: 0px; margin: 0px;"></td></tr></table></div>');
		var sb = $("#div_slwd_sidebar");
		
		sb.css("position", "absolute");
		sb.css("left", "-600px");
		sb.css("top", "50px");
		sb.animate({"left": "0px"});
		
		$("#td_slwd_sb_logo").click(function() {
		
			if($(this).attr("showing") == "true") {
			$(this).attr("showing", "false");
			
				//$("#td_slwd_sb_share").animate({'width':'1px'});
				//$("#td_slwd_sb_comment").animate({'width':'1px'});
				$("#td_slwd_sb_tag").animate({'width':'1px'}, function() {
				
					$("#td_slwd_sb_element").css("display", "none");

				
				});
				
			} else {
			$(this).attr("showing", "true");
			
			$("#td_slwd_sb_element").html('');
			$("#td_slwd_sb_element").append('<table cellspacing="0" cellpadding="0" style="height: 30px;"><tr><td><div style="width: 1px; overflow: hidden; white-space: nowrap; font-size: 10px;" id="td_slwd_sb_tag"><a href="http://www.slwdlabs.net" style="color: black; text-decoration: none;">SLWD:Labs.net</a></div></td><td style="background-color: #FF7DC2; border-left: 1px solid white; display: none;font-size: 10px;"><div style="width: 1px; overflow: hidden; white-space: nowrap;" id="td_slwd_sb_share">&nbsp;&nbsp;&nbsp;Jaa ystäville</div></td><td style="background-color: #96C9FF; border-left: 1px solid white; display: none;font-size: 10px;"><div id="td_slwd_sb_comment" style="width: 1px; overflow: hidden; white-space: nowrap;">&nbsp;&nbsp;&nbsp;Kommentoi</div></td></tr></table>');

			$("#td_slwd_sb_element").css("display", "block");
			//$("#td_slwd_sb_share").animate({'width':'120px'}); 
            //$("#td_slwd_sb_comment").animate({'width':'120px'});
            $("#td_slwd_sb_tag").animate({'width':'120px'});
 						
			}
		
		});
							  
	});