<!--

$(document).ready(function(){

//SIDEBAR SLIDERS
// rollovers
	$(".section p:not(:first)").hide();
        $(".section ul").hide();  
        $(".section").hover(
            function () {
              $(this).children(".section p:not(:first)").show("medium");
              $(this).children(".section ul").show("medium"); 
            },
            function () {
              $(this).children(".section p:not(:first)").hide("medium");
              $(this).children(".section ul").hide("medium");
            }
        ); 
        


//NAV ROLLOVERS
// whole bar
        $(".nav").hover(
            function () {
              $(this).fadeTo("fast", 1);
            },
            function () {
              $(this).fadeTo("normal", 0.75);
            }
        );  
// individual link
        $(".nav li a").hover(
            function () {
              $(this).animate( { marginTop: "3px" }, { queue:false, duration:100 });
              $(this).animate( { borderBottom: "1px solid #ffcc00" }, 50);
            },
            function () {
              $(this).animate( { marginTop: "0px" }, { queue:false, duration:300 });
              $(this).animate( { borderBottom: "1px solid #ffffff" }, 100);
            }
        );


// LINK ROLLOVER FADES
// post header
        $(".postContainer .post h2 a").hover(
            function () {
              $(this).animate({color: '#FFCC00'}, 100);
            },
            function () {
              $(this).animate( {color: '#555555'}, 300);
            }
        );

// post tags
        $(".line2 a").hover(
            function () {
              $(this).animate({color: '#FFCC00'}, 100);
            },
            function () {
              $(this).animate( {color: '#b1b1b1'}, 300);
            }
        );

// PAGE FOOTER ROLLOVER
        $("div#footer p").hover(
            function () {
              $(this).animate({color: '#555555'}, 100);
            },
            function () {
              $(this).animate( {color: '#bfbfbf'}, 300);
            }
        );







// END READY FUNCTION
});
-->
