﻿$(document).ready(function(){
var _lheight = document.documentElement.clientHeight -284;
$("input[type='text']").addClass("input_txt");
$("input[type='password']").addClass("input_pas");
$("input[type='reset'],input[type='submit'],input[type='button']").addClass("input_btn");

$("#webbrowser").click(function(){$(this).hide("1000");});
$("#logo").hover(function(){
        $(this).fadeTo("slow", 0.5);
    },function(){
        $(this).fadeTo("slow", 1.0);
    });

$("#LeftNav dt").click(function(){
		$(this).toggleClass("bottomIco")
			   .next().slideToggle(300)
		$(this).siblings("dt").removeClass("bottomIco");
		

	});

$("#homebody span").hover(function(){
        $(this).fadeTo("slow", 1);
    },function(){
        $(this).fadeTo("slow", 0);
    });
$("#left a").hover(function(){
        $(this).fadeTo("slow", 1.0);
    },function(){
        $(this).fadeTo("slow", 0.6);
    });
 $("#search").tabs();
 
})