function init()
{
/*
	$("#navlist li").hover(
		function() { $(this).children("a").addClass("over").end().children("ul").fadeIn(250) }, 
		function() { $(this).children("a").removeClass("over").end().find("ul").fadeOut(500) }
		);
*/
  $(window).load(
    function() { $("#custom_discount_link").slideDown(1000) }
  );
}

$(document).ready(init);