$(document).ready(function() {

	$("#footer_nav").children().each(function() {
        	
		if($(this).attr("id") == "128" || $(this).attr("id") == "129" || $(this).attr("id") == "130")
		{
			//css("color", "white");
			$(this).children().css("color", "white");
			//$(this).prev().css("background-image", "none");
			$(this).css("background-image", "none");
			$(this).children().hover(function(e) {
                $(this).css("cursor", "default");
            });
		}
    });
	
	
});
