$(document).ready(function(){


// LOGO ANIMATION
/*
    $("<span></span>").addClass("logoAlternative").css("opacity", "0").prependTo($("#logo a")); 

   	$("#logo a")
        .hover(function() {
            $("#logo a span").stop().animate({
                opacity: 1
            }, "slow");
        }, function() {
            $("#logo a span").stop().animate({
                opacity: 0
            }, "slow");
        });
*/ 
// MENU ANIMATION
/*    
    $("#menu li a")
        .hover(function() {
            $(this).stop().animate({
                "paddingLeft": "1.5em" ,
                "paddingRight": "1.5em"
            }, "fast");
        }, function() {
            $(this).stop().animate({
                "paddingLeft": "0.825em",
                "paddingRight": "0.825em" 
            }, "fast");
        })
*/

// TABLE ROW ALTERNATING

    $("table.params tbody tr:even").addClass("even");
    $("table.params tbody tr:odd").addClass("odd");


// LOGO SHADOW
   
/*	$("h2#mission span.name").dropShadow({
		left: 3,
		top: 8,
		blur: 2,
		opacity: 0.5,
		color: "black"
	});
	
	$("h2#mission span.description").dropShadow({
		left: 3,
		top: -4,
		blur: 2,
		opacity: 0.7,
		color: "black"
	});

	$("h1#logo").dropShadow({
		left: 4,
		top: 4,
		blur: 2,
		opacity: 0.3,
		color: "black"
	});
*/
});



