$(document).ready(function(){	
						   
			$("#blogger_info").hide();
			$(".toggle_friend").click(function(event){
			event.preventDefault();
			$("#blogger_info").toggle("slow");
			});	
			
			
			
			
			/* added by cd 2010 03 29 */
			
		$("#friends ul li:odd").addClass('light');
			
			
			
			
		$(".friend").click(function(){
									
			window.location=$(this).find("a.yellow").attr("href"); return false;
		});

			
});