(function($){
  $.fn.fix = function(options) {
    if ($.browser.msie && $.browser.version < 7)
        {
    this.each(function()
    {
	if ((/\.png/i).test($(this).attr("src")))
        {
	  var s = $(this).attr("src");
	  $(this).css("width", $(this).attr("offsetWidth") + "px").css("height", $(this).attr("offsetHeight") + "px").css("filter", 'progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled="true", sizingMethod="crop", src="' + s + '")').attr("src", "/wp-content/themes/allo-tendance/img/blank.gif");
        }
    });

    $('div, input, select').each(function()
    {
        if ((/\.png/i).test($(this).css('background-image')))
        {
            var s = $(this).css('background-image').slice(5, $(this).css('background-image').toString().length - 2);
            $(this).css('background-image', 'none').css("filter", 'progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled="true", sizingMethod="crop", src="' + s + '")');
        }
    });
        }
  };
 })(jQuery)