function jsLoadParts()
{
	$(".file").each(function(i) {
		if(! this.id) return true;
		$('#'+this.id).load('parts/'+this.id+'.html',function(){
			$(this).show();
		});
	});
}
$(jsLoadParts);
