var isHoverSupported = false;

jQuery.noConflict()(document).ready(function() {
	isMouseEventSupported();
});
 
  
 function isMouseEventSupported() 
 {
 	   var el = document.createElement('div');
 	   el.setAttribute('ontouchmove', 'return;');
 	   if(typeof el.ontouchmove == "function"){
 		   isHoverSupported = true;
 	   }else {
 		   isHoverSupported = false;
 	   }	    
 }

 function overrideHover(){
	if(isHoverSupported == true){
		jQuery.noConflict()().find('#ulgl .mask').addClass('overrideHover');
	}
 }
