$(document).ready(function(){
	
/*	if($.browser.msie){
			//do nothing
    }else{
				
		$(".noscript").remove();
		
		for(i=0; i<total; i++){
		$('#pics tr td').append("<div class=\"placeholder\" style=\"width:"+widths[i]+"px\"></div>");
		}
		
		if(total > 0){
		$('#nav').append("<span id=\"lp\"></span>").find("span").text("Loaded 0 / "+total).hide().fadeIn("slow");
		}
			 
		$.preload(urls, {
			base:'http://www.chloerichard.com/ul/',
			threshold: 1,
			onComplete:function( data ){
				count++;
				var img = new Image();
				img.src = data.image;
				iwid = img.width;
				ihei = img.height;
				if(data.done != data.total){
					$("#lp").text("Loaded "+count+" / "+total);
				}else{
					$("#lp").text("Loaded "+total+" / "+total);
				}
				$("#pics tr div:eq("+(count-1)+")").append("<img src='"+data.image+"' width='"+iwid+"' height='"+ihei+"' alt=\"\" />");
				$('#pics tr img:last').hide().fadeIn("slow");
				if(data.done == data.total){
					$("#lp").animate({marginTop:"0"}, 1500).fadeOut("slow");
				}
			}
		});
	
  }*/
	
});
