/* rtrTip (for jQuery)
 * Version: 1.0
 * Hover Tooltip
 */

//jQuery.browser alteration for Google Chrome detection
//source: javascriptly.com/2008/09/javascript-to-detect-google-chrome/

/*var userAgent = navigator.userAgent.toLowerCase();
jQuery.browser = {
  version: (userAgent.match( /.+(?:rv|it|ra|ie|me)[\/: ]([\d.]+)/ ) || [])[1],
    chrome: /chrome/.test( userAgent ),
    safari: /webkit/.test( userAgent ) && !/chrome/.test( userAgent ),
    opera: /opera/.test( userAgent ),
    msie: /msie/.test( userAgent ) && !/opera/.test( userAgent ),
    mozilla: /mozilla/.test( userAgent ) && !/(compatible|webkit)/.test( userAgent )
};*/


$(document).ready(function(){
	
	  /* if (jQuery.browser.chrome) { // No Fade for Chrome
		$(".topOffer").hover(function() {
			$(this).find(".tip").show();
		
			}, function() {
			$(this).find(".tip").hide();
		});
    }
 else {
      if (jQuery.browser.msie) { // No Fade for IE
        $(".topOffer").hover(function() {	
			$(this).find(".tip").show();
		
			}, function() {
			$(this).find(".tip").hide();
		});
      }
	  
      else {*/ //other browsers
        $(".topOffer").hover(function() {	
			$(this).find(".tip").show();
		
			}, function() {
			$(this).find(".tip").hide();
		});
     // }
	//}
	
});
 
    

