

$(document).ready(function() {


	
	
});	
	
$(document).ready(function () {

    $("#orange_link").hover(
        function () { 
            /* $(this).css({background: "url('images/orange_off.png')no-repeat"}); */
             $(this).find('a').css({color: "#F8981D"});
            $(this).css({cursor: "pointer"});
             $(this).find('a').css({visibility: "visible"});
        },
        function () { 
           /*  $(this).css({background: "url('images/orange_off.png')no-repeat"}); */
            $(this).css({cursor: "default"});        
             $(this).find('a').css({color: "#777777"});
             $(this).find('a').css({visibility: "hidden"});
        }
    );

    $("#blue_link").hover(
        function () { 
         /*  $(this).css({background: "url('images/blue_off.png')no-repeat"}); */
            $(this).css({cursor: "pointer"});
             $(this).find('a').css({color: "#38C1CF"});
             $(this).find('a').css({visibility: "visible"});
        },
        function () { 
           /*  $(this).css({background: "url('images/blue_off.png')no-repeat"}); */
            $(this).css({cursor: "default"});       
             $(this).find('a').css({color: "#777777"});
             $(this).find('a').css({visibility: "hidden"});
        }
    );

    $("#green_link").hover(
        function () { 
          /*  $(this).css({background: "url('images/green_off.png')no-repeat"}); */
            $(this).css({cursor: "pointer"});
             $(this).find('a').css({color: "#aabf25"});
             $(this).find('a').css({visibility: "visible"});
        },
        function () { 
           /*  $(this).css({background: "url('images/green_off.png')no-repeat"}); */
            $(this).css({cursor: "default"});       
             $(this).find('a').css({color: "#777777"});
             $(this).find('a').css({visibility: "hidden"});
        }
    );
});



    
    
    

	
