$(document).ready(function () {
        $(".new-nav ul li").hover(function () {
        $('ul', this).css('display', 'block');
    }, function () {
        $('ul', this).css('display', 'none');
    });

/*now hovers*/
$(".indus").hover( function(){
$(this).attr("src","images/industriesserved.png");
}, function(){
$(this).attr("src","images/industriesserved1.png");
});
$(".corphis").hover( function(){
$(this).attr("src","images/corporatehistory.png");
}, function(){
$(this).attr("src","images/corporatehistory1.png");
});
$(".partspro").hover( function(){
$(this).attr("src","images/partsprofile.png");
}, function(){
$(this).attr("src","images/partsprofile1.png");
});
$(".company").hover( function(){
$(this).attr("src","images/tag.png");
}, function(){
$(this).attr("src","images/tag-red.png");
});
$(".overview").hover( function(){
$(this).attr("src","images/tech-2-hov.png");
}, function(){
$(this).attr("src","images/tech-2.png");
});
$(".proptech").hover( function(){
$(this).attr("src","images/tech-1-hov.png");
}, function(){
$(this).attr("src","images/tech-1.png");
});
$(".inttech").hover( function(){
$(this).attr("src","images/saws.png");
}, function(){
$(this).attr("src","images/saws2.png");
});
$(".milling").hover( function(){
$(this).attr("src","images/icon1.png");
}, function(){
$(this).attr("src","images/icon1-hover.png");
});
$(".turning").hover( function(){
$(this).attr("src","images/icon2.png");
}, function(){
$(this).attr("src","images/icon2-hover.png");
});
$(".support").hover( function(){
$(this).attr("src","images/icon3.png");
}, function(){
$(this).attr("src","images/icon3-hover.png");
});
$(".inspec").hover( function(){
$(this).attr("src","images/icon4.png");
}, function(){
$(this).attr("src","images/icon4-hover.png");
});
$(".finish").hover( function(){
$(this).attr("src","images/icon5.png");
}, function(){
$(this).attr("src","images/icon5-hover.png");
});
});