	$(document).ready(function() {
                $(".free").click(function() {
			$(this).toggleClass('chose');
                        var id = $(this).attr("id");
			$(".freeAll").removeClass("choseAll");
			$("#tldall").attr("value","off");
                        if ($("#tld"+id).attr("value") == "on") {
                              $("#tld"+id).attr("value","off");
                        } else {
                              $("#tld"+id).attr("value","on");
                        }
                });
		$(".freeAll").click(function() {
                        var id = $(this).attr("id");
			$(this).toggleClass("choseAll");
			$(".free").removeClass("chose");
			$(".tldeach").attr("value","off");
                        if ($("#tldall").attr("value") == "on") {
                              $("#tldall").attr("value","off");
                        } else {
                              $("#tldall").attr("value","on");
                        }

                });
		$("#keywords").click(function() {
			if ($("#keywords").attr("value") == "Enter keywords...") {
				$("#keywords").attr("value","");
			}
		});
        });

