var m = document.uniqueID && document.compatMode && !window.XMLHttpRequest && document.execCommand ; 
try { 
	if(!!m) { 
	m("BackgroundImageCache", false, true);
	} 
}
catch(e) {};


$(document).ready(function(){
	
	//Show '?' icon when js is enabled
	var $helpIcon = $('.jsShowContainer').show(),
		$warningContainer = $('.warningContainer');
	
	
	//Show warning container on hover 
	$helpIcon.hover(
		function(){ //On hover state
			$warningContainer.show();
		},
		function(){ //Off hover state
			$warningContainer.hide();
		});
	
	//On tab focus
	$helpIcon.focusin(function(){
		$warningContainer.show();
	});
	
	//Off tab focus
	$helpIcon.focusout(function(){
		$warningContainer.hide();
	});
	
	$helpIcon.click(function(e){
		e.preventDefault();
	})
	
 });

