jQuery(document).ready(function($){

	// animated scroll to top
	$('.backtotop').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	});

	// alt class for conversations ul
	$(".chats ul > li:nth-child(even)").addClass("alt");  	

	
	//
	// $(window).scroll(function() {
    // $('#sidebar').css('top', $(this).scrollTop() + "px");
	// });
	//
			 
});	

	