    var userAgent = navigator.userAgent.toLowerCase();
	current_browser = 'Unknown Browser';
    $.browser.chrome = /chrome/.test(navigator.userAgent.toLowerCase()); 
    
    // Is this a version of IE?
    if($.browser.msie){
		current_browser = 'Internet Explorer';
    }
    
    // Is this a version of Chrome?
    if($.browser.chrome){
		current_browser = 'Chrome';
        // If it is chrome then jQuery thinks it's safari so we have to tell it it isn't
        $.browser.safari = false;
    }
    
    // Is this a version of Safari?
    if($.browser.safari){
        current_browser = 'Safari';
    }
    
    // Is this a version of Mozilla?
    if($.browser.mozilla){
        current_browser = 'Firefox';
    }
    
    // Is this a version of Opera?
    if($.browser.opera){
         current_browser = 'Opera';
    }
