flexiCSS = function(){
	return {
		fixIE: function()
		{
			this.fixImgHeight();
		}
		,fixImgHeight: function()
		{
			  var imgs = document.getElementsByTagName('img');
			  for(var i=0; i<imgs.length; i++)
			  {
			  	var img = imgs[i];
				img.onload = this.fixImg;
			  }
		}
		,fixImg: function()
		{
			this.style.border = this.style.border;
		}
	}
}();
flexiCSS.fixImgHeight();