// A file for JS workarounds for CSS3 features that are not// supported in older browsersvarpointerEventsNone=function(selector,supportedStyles){// Check to see if the brower supports 'pointer-events' css rule.// If it doesn't, use javascript to stop the link from working// when clicked.$(selector).click(function(event){if(!('pointerEvents'insupportedStyles)){event.preventDefault();};});};$(function(){