$(document).ready(function(){ $(".nav").superfish({ animation : { opacity:"show",height:"show"} }) .find(">li:has(ul)") /* .find(">li[ul]") in jQuery less than v1.2 */ .mouseover(function(){ $("ul", this).bgIframe({opacity:false}); }) .find("a") .focus(function(){ $("ul", $(".nav>li:has(ul)")).bgIframe({opacity:true}); /* $("ul", $(".nav>li[ul]")).bgIframe({opacity:false}); in jQuery less than v1.2*/ }); $("#ctl00_MainZone_ctl00_RecipientZip").mask("99999"); $("#ctl00_MainZone_ctl00_RecipientShipZip").mask("99999"); $("#ctl00_MainZone_ctl00_CustomerZip").mask("99999"); $("#ctl00_MainZone_ctl00_CustomerDayPhone").mask("(999) 999-9999"); $("#ctl00_MainZone_ctl00_CustomerEveningPhone").mask("(999) 999-9999"); $("#ctl00_MainZone_ctl00_ProfileZip").mask("99999"); $("#ctl00_MainZone_ctl00_ProfileDayPhone").mask("(999) 999-9999"); $("#ctl00_MainZone_ctl00_ProfileEveningPhone").mask("(999) 999-9999"); $(".zip").mask("99999"); $(".phone").mask("(999)999-9999"); $("#GoToEcard").hide(); });