/*
	This plugin fixes the issue with IE not properly recognizing background-position.
	More info here:
	http://dextrose.be/2008/11/10/jquery-background-position-and-internet-explorer/
*/

(function($) {
  jQuery.fn.backgroundPosition = function() {
    var p = $(this).css('background-position');
    if(typeof(p) === 'undefined') return $(this).css('background-position-x') + ' ' + $(this).css('background-position-y');
    else return p;
  };
})(jQuery);