$(document).ready(function(){
	// Main Nav Buttons: Remove the last vertical border
	$("#main-nav li:last a").css("background-image","none").css("padding","0 25px");
    
    // Supplmental Banners: Remove the right margin from the last block.
    $(".supp-banners .supp-banner:first").css("margin-left","0").css("margin-right","14px");
    $(".supp-banners .supp-banner:last").css("margin-right","0").css("margin-left","14px");
    
    // Footer Nav: Remove the background and right padding from the last link,
    $("#footer-nav li:last a").css({"background-image":"none", "padding-right":"0"});
    
     // Product Forms: add an asterisk to required labels.
    $("#db-forms label.required").append("<span class='required'>*</span>");
});