// JavaScript Document

$(function () {


    $("ul.tabs").tabs("div.panes > div");
    //Basic Hover Code
    $("#li_fet").hover(

    function () {
    $("#li_fet").addClass("hover");
    },
    function () {
    $("#li_fet").removeClass("hover");
    }
    );

    $("#drop_fet li").hover(

    function () {
    $(this).addClass("hover");
    },
    function () {
    $(this).removeClass("hover");
    }
    );

    $("#li_nt").hover(

		function () {
			$("#li_nt").addClass("hover");
		},
		function () {
		    $("#li_nt").removeClass("hover");
		}
	);

    $("#drop_nt li").hover(

		function () {
		    $(this).addClass("hover");
		},
		function () {
		    $(this).removeClass("hover");
		}
	);
    //End Basic Hover
		$("ul#lang img").css("opacity", "0.5");
		$("ul#lang img").hover(function () {
		    // animate opacity to full
		    $(this).stop().animate({
		        opacity: 1
		    }, "slow");
		},
		// on mouse out
		function () {
		    // animate opacity to null
		    $(this).stop().animate({
		        opacity: .5
		    }, "slow");
		});



}
);
