$(document).ready(function(){
	$("#spec table tr:odd").addClass("odd");
	$("#remember_txt, #auth_form img").click(function(){
		if ($("#remember").val() == "1") {
			$("#remember").val("0");
			$("#auth_form img").css("background-position", "0px 0px");
		} else {
			$("#remember").val("1");
			$("#auth_form img").css("background-position", "0px -13px");
		}
	});
	$(".wsub").bind('click',function() {
	    $("#catalog .body div:visible").slideUp("fast");
	    if (!$(this).hasClass("o")) {
	        $(".wsub.o").removeClass("o");
	        $(this).next("div").slideDown("fast");
	        $(this).addClass("o");
	    } else {
	        $(".wsub.o").removeClass("o");
	    }
	    return false
	});
	/*$(".wsub").click(function(){
		$("#catalog .body div:visible").slideUp("fast");
		if (!$(this).hasClass("o")) {
			$(".wsub.o").removeClass("o");
			$(this).next("div").slideDown("fast");
			$(this).addClass("o");
		} else {
			$(".wsub.o").removeClass("o");
		}
		return false
	});*/
});
