// JavaScript Document
$(document).ready(function() {
   $(".nav li:first").css('background','none');
   $(".footer_nav ul li:last, .footer_nav ul li:first").css({'border':'0'});
});


// Image replace function
$(function() {
    $("input.s")
        .mouseover(function() { 
            var src = $(this).attr("src").match(/[^\.]+/) + "_hover.png";
            $(this).attr("src", src);
        })
        .mouseout(function() {
            var src = $(this).attr("src").replace("_hover", "");
            $(this).attr("src", src);
        });
}); 





