//josh@meta13.com
$(function () {
    //nothing
});
$(document).ready(function () {
    //$(function(){
    //navigation rolls
    $("#top-nav a").css({
        backgroundPosition: "0px 35px"
    });
    $("#top-nav a").hover(

    function () {
        $(this).stop().animate({
            backgroundPosition: "(0px 0px)"
        }, {
            duration: 200
        })
    }, function () {
        $(this).stop().animate({
            backgroundPosition: "(0px 35px)"
        }, {
            duration: 800
        })
    });
    //nav Rolls for division banner
    $("#nav-general").hover(

    function () {
        $("#desc-general").fadeIn(400);
    }, function () {
        $("#desc-general").hide();
    });
    $("#nav-sports").hover(

    function () {
        $("#desc-sports").fadeIn(400);
    }, function () {
        $("#desc-sports").hide();
    });
    $("#nav-heat").hover(

    function () {
        $("#desc-heat").fadeIn(400);
    }, function () {
        $("#desc-heat").hide();
    });
    //body navigator
    $("#bodyNav-nav a").toggle(

    function () {
        $("#bodyNavigator").fadeIn(1000);
        //$(this).toggleClass('idle');	
    }, function () {
        $("#bodyNavigator").fadeOut(1000);
        //$(this).toggleClass('idle');	
    });
    $(':input').focus(function () {
        $(this).animate({
            'color': '#232323'
        }, 500);
    });
    $(':input').blur(function () {
        $(this).animate({
            'color': '#999999'
        }, 500);
    });
});
