$(document).ready(function() {

	$('.top a').click(function(){
		$('html, body').animate({scrollTop:0}, 'slow');
	    return false;
	    });
	    
	 $('.CommentDetail:odd').addClass('alt');
	 
	 $(".clearFocus").focus(function () {
		if ($(this).val() === $(this).attr("value")) {
		$(this).val("");
		}
		}).blur(function () {
		if ($(this).val() === "") {
		$(this).val($(this).attr("value"));
		}
		});
	    
	 
	
});

function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}
