jQuery(document).ready(function($){
	$("#s").focus(function () {
		 $(this).attr("value","");
	});
	$("#main-nav li:first-child a").addClass("first");
	
	$(".comments-list .comment-excerpt .more").click( function() {
		$(this).hide();
		$(this).parent().next().show();
		return false;
	}).parent().next().hide();

	$(".comments-list .comment-expanded .less").click( function() {
		$(this).parent().hide();
		$(this).parent().parent().find(".more").show();
		return false;
	});
});