
$(function()
{
	$("#header-nav-content ul a img").mouseover(function() { $(this).css({ "border-bottom-color": "white" }); })
	                                 .mouseout (function() { $(this).css({ "border-bottom-color": "#02060F" }); })
});