
if($.browser.msie == true){
$(document).ready(function(){
	$('img').hide();
	
	document.body.onload = function(){
		$("img").each(function(){
			if(this.complete != true){
				$(this).remove();
			}else{
				$(this).show();	
			}
		});
	}
});
}