/*
 * Browser Selector Plugin for jQuery 1.1.2
 *
 * Copyright(C) 2007 LEARNING RESOURCE LAB.
 * http://postal-search-apis-and-solutions.blogspot.com/
 *
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 */
(function($) {

  // browser
  $.fn.browser = function(expr) {
    var self = this;
    return self.pushStack($.browser[expr] ? self : []);
  };

  // :browser
  $.extend($.expr[':'], {
    'browser': 'jQuery.browser[m[3]]',
    'msie': 'jQuery.browser["msie"]',
    'mozilla': 'jQuery.browser["mozilla"]',
    'opera': 'jQuery.browser["opera"]',
    'safari': 'jQuery.browser["safari"]'
  });

})(jQuery); // function($)
