Index: tika-core/src/main/java/org/apache/tika/mime/MimeType.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/MimeType.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/MimeType.java	(working copy)
@@ -19,7 +19,6 @@
 import java.io.Serializable;
 import java.net.URI;
 import java.util.ArrayList;
-import java.util.Arrays;
 import java.util.Collections;
 import java.util.List;
 
@@ -29,7 +28,7 @@
 public final class MimeType implements Comparable<MimeType>, Serializable {
 
     /**
-     * Serial version UID.
+     * Generated serial ID
      */
     private static final long serialVersionUID = 4357830439860729201L;
 
Index: tika-core/src/main/java/org/apache/tika/mime/MagicMatch.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/MagicMatch.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/MagicMatch.java	(working copy)
@@ -27,6 +27,11 @@
  */
 class MagicMatch implements Clause {
 
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 4693039941295960620L;
+
     private final MediaType mediaType;
 
     private final String type;
Index: tika-core/src/main/java/org/apache/tika/mime/AndClause.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/AndClause.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/AndClause.java	(working copy)
@@ -20,6 +20,10 @@
 
 class AndClause implements Clause {
 
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -3572009507680757629L;
     private final Clause[] clauses;
 
     AndClause(Clause... clauses) {
Index: tika-core/src/main/java/org/apache/tika/mime/purifier/package-info.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/purifier/package-info.java	(revision 0)
+++ tika-core/src/main/java/org/apache/tika/mime/purifier/package-info.java	(revision 0)
@@ -0,0 +1,25 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/**
+ * This package contains all the logic to implement your own 
+ * {@link org.apache.tika.mime.purifier.Purifier}.
+ * Each {@link org.apache.tika.mime.purifier.Purifier} is 
+ * responsible for modifying the file <b>before</b>
+ * its <i>MIME type</i> is detected.
+ */
+package org.apache.tika.mime.purifier;
\ No newline at end of file
Index: tika-core/src/main/java/org/apache/tika/mime/purifier/WhiteSpacesPurifier.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/purifier/WhiteSpacesPurifier.java	(revision 0)
+++ tika-core/src/main/java/org/apache/tika/mime/purifier/WhiteSpacesPurifier.java	(revision 0)
@@ -0,0 +1,57 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.tika.mime.purifier;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+/**
+ * Implementation of {@link org.apache.tika.mime.Purifier} that removes 
+ * all the eventual blank characters at the header of a file that 
+ * might prevents its <i>MIME Type</i> detection.
+ *
+ * @author Davide Palmisano ( dpalmisano@gmail.com )
+ */
+public class WhiteSpacesPurifier implements Purifier {
+
+    /**
+     * {@inheritDoc}
+     */
+    public void purify(InputStream inputStream) throws IOException {
+        if(!inputStream.markSupported())
+            throw new IllegalArgumentException(
+                "Provided InputStream does not support marks");
+
+        // mark the current position
+        inputStream.mark(Integer.MAX_VALUE);
+        int byteRead = inputStream.read();
+        char charRead = (char) byteRead;
+        while(isBlank(charRead) && (byteRead != -1)) {
+            // if here means that the previous character must be removed, so mark.
+            inputStream.mark(Integer.MAX_VALUE);            
+            byteRead = inputStream.read();
+            charRead = (char) byteRead;
+        }
+        // if exit go back to the last valid mark.
+        inputStream.reset();
+    }
+    
+    private boolean isBlank(char c) {
+        return c == '\t' || c == '\n' || c == ' ' || c == '\r' || c == '\b' || c == '\f';
+    }
+}
Index: tika-core/src/main/java/org/apache/tika/mime/purifier/Purifier.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/purifier/Purifier.java	(revision 0)
+++ tika-core/src/main/java/org/apache/tika/mime/purifier/Purifier.java	(revision 0)
@@ -0,0 +1,40 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.tika.mime.purifier;
+
+import java.io.IOException;
+import java.io.InputStream;
+
+/**
+ * This interface defines a minimum set of methods that
+ * a {@link org.apache.tika.detect.Detector} could
+ * call in order to clean the input before performing the <i>MIME type</i>
+ * detection.
+ * 
+ * @author Davide Palmisano ( dpalmisano@gmail.com )
+ */
+public interface Purifier {
+
+    /**
+     * Performs the purification of the provided resettable {@link java.io.InputStream}.
+     * 
+     * @param inputStream a resettable {@link java.io.InputStream} to be cleaned.
+     */
+    void purify(InputStream inputStream) throws IOException;
+
+}
Index: tika-core/src/main/java/org/apache/tika/mime/MimeTypeException.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/MimeTypeException.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/MimeTypeException.java	(working copy)
@@ -23,6 +23,11 @@
  */
 public class MimeTypeException extends TikaException {
 
+  /**
+   * Default serial ID
+   */
+  private static final long serialVersionUID = -1122922305859821242L;
+
     /**
      * Constructs a MimeTypeException with the specified detail message.
      * 
Index: tika-core/src/main/java/org/apache/tika/mime/MimeTypes.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/MimeTypes.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/MimeTypes.java	(working copy)
@@ -38,6 +38,8 @@
 import org.apache.tika.detect.TextDetector;
 import org.apache.tika.detect.XmlRootExtractor;
 import org.apache.tika.metadata.Metadata;
+import org.apache.tika.mime.purifier.Purifier;
+import org.apache.tika.mime.purifier.WhiteSpacesPurifier;
 
 /**
  * This class is a MimeType repository. It gathers a set of MimeTypes and
@@ -161,6 +163,9 @@
      * <p>
      * The given byte array is expected to be at least {@link #getMinLength()}
      * long, or shorter only if the document stream itself is shorter.
+     * <p>
+     * If a purifier is present then this is used prior to {@link #getMinLength()}
+     * processing.
      *
      * @param data first few bytes of a document stream
      * @return matching MIME type
@@ -212,6 +217,14 @@
         try {
             TextDetector detector = new TextDetector(getMinLength());
             ByteArrayInputStream stream = new ByteArrayInputStream(data);
+            if(stream != null) {
+              try {
+                Purifier purifier = new WhiteSpacesPurifier();
+                purifier.purify(stream);
+              } catch (IOException e) {
+                throw new RuntimeException("Error while purifying the provided input", e);
+              }
+            }
             return forName(detector.detect(stream, new Metadata()).toString());
         } catch (Exception e) {
             return rootMimeType;
@@ -531,4 +544,5 @@
         }
         return types;
     }
+
 }
Index: tika-core/src/main/java/org/apache/tika/mime/OrClause.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/OrClause.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/OrClause.java	(working copy)
@@ -20,7 +20,11 @@
 
 class OrClause implements Clause {
 
-    private final List<Clause> clauses;
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 2089222390646997974L;
+      private final List<Clause> clauses;
 
     OrClause(List<Clause> clauses) {
         this.clauses = clauses;
Index: tika-core/src/main/java/org/apache/tika/mime/Magic.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/mime/Magic.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/mime/Magic.java	(working copy)
@@ -24,6 +24,11 @@
  */
 class Magic implements Clause, Comparable<Magic> {
 
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 5308393371823772332L;
+
     private final MimeType type;
 
     private final int priority;
Index: tika-core/src/main/java/org/apache/tika/sax/TaggedSAXException.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/sax/TaggedSAXException.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/sax/TaggedSAXException.java	(working copy)
@@ -26,6 +26,10 @@
 public class TaggedSAXException extends SAXException {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -2383105081515353584L;
+    /**
      * The object reference used to tag the exception.
      */
     private final Object tag;
Index: tika-core/src/main/java/org/apache/tika/parser/external/ExternalParsersFactory.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/parser/external/ExternalParsersFactory.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/parser/external/ExternalParsersFactory.java	(working copy)
@@ -82,7 +82,8 @@
       Parser parser = config.getParser();
       if (parser instanceof CompositeParser) {
          CompositeParser cParser = (CompositeParser)parser;
-         Map<MediaType,Parser> parserMap = cParser.getParsers();
+         @SuppressWarnings("unused")
+        Map<MediaType,Parser> parserMap = cParser.getParsers();
       }
       // TODO
    }
Index: tika-core/src/main/java/org/apache/tika/parser/ParserPostProcessor.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/parser/ParserPostProcessor.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/parser/ParserPostProcessor.java	(working copy)
@@ -36,6 +36,11 @@
 public class ParserPostProcessor extends ParserDecorator {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 1082816055239659736L;
+
+    /**
      * Creates a post-processing decorator for the given parser.
      *
      * @param parser the parser to be decorated
Index: tika-core/src/main/java/org/apache/tika/parser/ErrorParser.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/parser/ErrorParser.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/parser/ErrorParser.java	(working copy)
@@ -33,6 +33,10 @@
 public class ErrorParser extends AbstractParser {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 7727423956957641824L;
+    /**
      * Singleton instance of this class.
      */
     public static final ErrorParser INSTANCE = new ErrorParser();
Index: tika-core/src/main/java/org/apache/tika/parser/NetworkParser.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/parser/NetworkParser.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/parser/NetworkParser.java	(working copy)
@@ -43,6 +43,11 @@
 
 public class NetworkParser extends AbstractParser {
 
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -5416099113508995890L;
+
     private final URI uri;
 
     private final Set<MediaType> supportedTypes;
Index: tika-core/src/main/java/org/apache/tika/parser/AutoDetectParser.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/parser/AutoDetectParser.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/parser/AutoDetectParser.java	(working copy)
@@ -28,6 +28,8 @@
 import org.apache.tika.metadata.Metadata;
 import org.apache.tika.mime.MediaType;
 import org.apache.tika.mime.MediaTypeRegistry;
+import org.apache.tika.mime.purifier.Purifier;
+import org.apache.tika.mime.purifier.WhiteSpacesPurifier;
 import org.apache.tika.sax.SecureContentHandler;
 import org.xml.sax.ContentHandler;
 import org.xml.sax.SAXException;
@@ -51,29 +53,53 @@
         this(TikaConfig.getDefaultConfig());
     }
 
+    /**
+     * Creates an auto-detecting parser instance using the default Tika
+     * configuration with the addition of a specific 
+     * {@link org.apache.tika.detect.Detector} implementation.
+     * @param detector a user defined detector.
+     */
     public AutoDetectParser(Detector detector) {
         this(TikaConfig.getDefaultConfig());
         setDetector(detector);
     }
 
     /**
-     * Creates an auto-detecting parser instance using the specified set of parser.
+     * Creates an auto-detecting parser instance using the specified set of parser(s)
+     * and the default {@link org.apache.tika.detect.DefaultDetector}.
      * This allows one to create a Tika configuration where only a subset of the
      * available parsers have their 3rd party jars included, as otherwise the
      * use of the default TikaConfig will throw various "ClassNotFound" exceptions.
      * 
-     * @param detector Detector to use
-     * @param parsers
+     * @param parsers the parsers to include.
      */
     public AutoDetectParser(Parser...parsers) {
         this(new DefaultDetector(), parsers);
     }
 
+    /**
+     * Creates an auto-detecting parser instance using the specified set 
+     * and the default {@link org.apache.tika.detect.Detector}(s) and parser(s)
+     * implementations.
+     * This allows one to create a Tika configuration where only a subset of the
+     * available parsers have their 3rd party jars included, as otherwise the
+     * use of the default TikaConfig will throw various "ClassNotFound" exceptions.
+     * 
+     * @param parsers the parsers to include.
+     */
     public AutoDetectParser(Detector detector, Parser...parsers) {
         super(MediaTypeRegistry.getDefaultRegistry(), parsers);
         setDetector(detector);
     }
 
+    /**
+     * Create an auto-detecting parser using an existing 
+     * {@link org.apache.tika.config.TikaConfig} instance.
+     * Subsequently we obtain {@link org.apache.tika.detect.Detector} and
+     * {@link org.apache.tika.parser.Parser} implementations
+     * from the configuration.
+     * @param config the existing Tika configuration.
+     */
     public AutoDetectParser(TikaConfig config) {
         super(config.getMediaTypeRegistry(), config.getParser());
         setDetector(config.getDetector());
@@ -106,6 +132,14 @@
             Metadata metadata, ParseContext context)
             throws IOException, SAXException, TikaException {
         TemporaryResources tmp = new TemporaryResources();
+        if(stream != null) {
+          try {
+            Purifier purifier = new WhiteSpacesPurifier();
+            purifier.purify(stream);
+          } catch (IOException e) {
+            throw new RuntimeException("Error while purifying the provided input", e);
+          }
+        }
         try {
             TikaInputStream tis = TikaInputStream.get(stream, tmp);
 
Index: tika-core/src/main/java/org/apache/tika/parser/DelegatingParser.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/parser/DelegatingParser.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/parser/DelegatingParser.java	(working copy)
@@ -37,6 +37,11 @@
 public class DelegatingParser extends AbstractParser {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -3155013638985767859L;
+
+    /**
      * Returns the parser instance to which parsing tasks should be delegated.
      * The default implementation looks up the delegate parser from the given
      * parse context, and uses an {@link EmptyParser} instance as a fallback.
Index: tika-core/src/main/java/org/apache/tika/exception/EncryptedDocumentException.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/exception/EncryptedDocumentException.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/exception/EncryptedDocumentException.java	(working copy)
@@ -17,6 +17,11 @@
 package org.apache.tika.exception;
 
 public class EncryptedDocumentException extends TikaException {
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -4640940743548761225L;
+
     public EncryptedDocumentException() {
         super("Unable to process: document is encrypted");
     }
Index: tika-core/src/main/java/org/apache/tika/exception/TikaException.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/exception/TikaException.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/exception/TikaException.java	(working copy)
@@ -21,6 +21,11 @@
  */
 public class TikaException extends Exception {
 
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 6169468760011493332L;
+
     public TikaException(String msg) {
         super(msg);
     }
Index: tika-core/src/main/java/org/apache/tika/fork/ForkObjectInputStream.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/fork/ForkObjectInputStream.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/fork/ForkObjectInputStream.java	(working copy)
@@ -105,6 +105,7 @@
         byte[] data = new byte[n];
         input.readFully(data);
 
+        @SuppressWarnings("resource")
         ObjectInputStream deserializer =
             new ForkObjectInputStream(new ByteArrayInputStream(data), loader);
         return deserializer.readObject();
Index: tika-core/src/main/java/org/apache/tika/io/TaggedIOException.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/io/TaggedIOException.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/io/TaggedIOException.java	(working copy)
@@ -26,6 +26,10 @@
 public class TaggedIOException extends IOExceptionWithCause {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 7828785471783649782L;
+    /**
      * The object reference used to tag the exception.
      */
     private final Object tag;
Index: tika-core/src/main/java/org/apache/tika/detect/TextDetector.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/detect/TextDetector.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/detect/TextDetector.java	(working copy)
@@ -22,6 +22,8 @@
 
 import org.apache.tika.metadata.Metadata;
 import org.apache.tika.mime.MediaType;
+import org.apache.tika.mime.purifier.Purifier;
+import org.apache.tika.mime.purifier.WhiteSpacesPurifier;
 
 /**
  * Content type detection of plain text documents. This detector looks at the
@@ -101,7 +103,9 @@
     
     /**
      * Looks at the beginning of the document input stream to determine
-     * whether the document is text or not.
+     * whether the document is text or not. Uses the default 
+     * {@link org.apache.tika.mime.purifier.WhiteSpacesPurifier()}
+     * on the InputStream.
      *
      * @param input document input stream, or <code>null</code>
      * @param metadata ignored
@@ -113,7 +117,17 @@
         if (input == null) {
             return MediaType.OCTET_STREAM;
         }
-
+        
+        //Purify the InputStream with the 'default'
+        //WhiteSpacePurifier. In the future we could make
+        //this configurable.
+        Purifier purifier = new WhiteSpacesPurifier();
+        try {
+          purifier.purify(input);
+        } catch (IOException e) {
+          throw new RuntimeException("Error while purifying the provided InputStream", e);
+        }
+        
         input.mark(bytesToTest);
         try {
             TextStatistics stats = new TextStatistics();
Index: tika-core/src/main/java/org/apache/tika/detect/Any23Detector.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/detect/Any23Detector.java	(revision 0)
+++ tika-core/src/main/java/org/apache/tika/detect/Any23Detector.java	(revision 0)
@@ -0,0 +1,246 @@
+/**
+ * 
+ */
+package org.apache.tika.detect;
+
+import java.io.BufferedReader;
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.util.regex.Pattern;
+
+import org.apache.tika.Tika;
+import org.apache.tika.metadata.Metadata;
+import org.apache.tika.mime.MediaType;
+import org.apache.tika.mime.MimeTypes;
+import org.apache.tika.mime.purifier.Purifier;
+import org.openrdf.rio.RDFFormat;
+import org.openrdf.rio.RDFParser;
+import org.openrdf.rio.Rio;
+
+/**
+ * Implementation of {@link org.apache.tika.detect.Detector} 
+ * based on Semantic web formats.
+ *
+ * @author Michele Mostarda (michele.mostarda@gmail.com)
+ * @author Davide Palmisano (dpalmisano@gmail.com)
+ */
+public class Any23Detector implements Detector {
+
+  /** Generated serialID  */
+  private static final long serialVersionUID = 8673328556174564097L;
+
+  private Purifier purifier;
+  
+  private Tika tika;
+
+  public static final String CSV_MIMETYPE = "text/csv";
+
+  /**
+   * Default Constructor which uses the 
+   * {@link org.apache.tika.mime.purifier.WhiteSpacesPurifier()}
+   */
+  public Any23Detector() {
+    this( new org.apache.tika.mime.purifier.WhiteSpacesPurifier() );
+  }
+
+  /**
+   * Supplementary constructor offering the option for a custom
+   * {@link org.apache.tika.mime.purifier.Purifier()} 
+   * @param purifier
+   */
+  public Any23Detector(Purifier purifier) {
+    this.purifier = purifier;
+  }
+
+  /**
+   * Estimates the <code>MediaType</code> of the input content.
+   * The <i>input</i> stream must be resettable.
+   *
+   * @param input <code>null</code> or a <b>resettable</i> input stream 
+   * containing data.
+   * @param metadata mimetype declared in metadata.
+   * @param the purifier implementation.
+   * @return the supposed <code>MediaType</code> or <code>null</code> 
+   * if nothing appropriate found.
+   * @throws IllegalArgumentException if <i>input</i> is not 
+   * <code>null</code> and is not resettable.
+   */
+  @Override
+  public MediaType detect(InputStream input, Metadata metadata) throws IOException {
+
+    if(input != null) {
+      try {
+        this.purifier.purify(input);
+      } catch (IOException e) {
+        throw new RuntimeException("Error while purifying the provided input", e);
+      }
+    }
+
+    String type;
+    tika = new Tika();
+    try {
+      final String mt = tika.detect(input, metadata);
+      if( ! MimeTypes.OCTET_STREAM.equals(mt) ) {
+        type = mt;
+      } else {
+        if( checkN3Format(input) ) {
+          type = RDFFormat.N3.getDefaultMIMEType();
+        } else if( checkNQuadsFormat(input) ) {
+          type = RDFFormat.NQUADS.getDefaultMIMEType();
+        } else if( checkTurtleFormat(input) ) {
+          type = RDFFormat.TURTLE.getDefaultMIMEType();
+          //TODO add once CSV module has been ported from Any23
+        //} else if( checkCSVFormat(input) ) {
+        //  type = CSV_MIMETYPE;
+        }
+        else {
+          type = MimeTypes.OCTET_STREAM; 
+        }
+      }
+    } catch (IOException ioe) {
+      throw new RuntimeException("Error while retrieving mime type.", ioe);
+    }
+    return MediaType.parse(type);
+  }
+
+  /**
+   * N3 patterns.
+   */
+  private static final Pattern[] N3_PATTERNS = {
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*<\\S+>\\s*\\."             ), // * URI URI .
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*_:\\S+\\s*\\."             ), // * URI BNODE .
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*\".*\"(@\\S+)?\\s*\\."     ), // * URI LLITERAL .
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*\".*\"(\\^\\^\\S+)?\\s*\\.")  // * URI TLITERAL .
+  };
+
+  /**
+   * N-Quads patterns.
+   */
+  private static final Pattern[] NQUADS_PATTERNS = {
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*<\\S+>\\s*\\<\\S+>\\s*\\."             ), // * URI URI      URI .
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*_:\\S+\\s*\\<\\S+>\\s*\\."             ), // * URI BNODE    URI .
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*\".*\"(@\\S+)?\\s*\\<\\S+>\\s*\\."     ), // * URI LLITERAL URI .
+    Pattern.compile("^\\S+\\s*<\\S+>\\s*\".*\"(\\^\\^\\S+)?\\s*\\<\\S+>\\s*\\.")  // * URI TLITERAL URI .
+  };
+
+  /**
+   * Checks if the stream contains the <i>N3</i> triple patterns.
+   *
+   * @param is input stream to be verified.
+   * @return <code>true</code> if <i>N3</i> patterns are detected, <code>false</code> otherwise.
+   * @throws IOException
+   */
+  public static boolean checkN3Format(InputStream is) throws IOException {
+    return findPattern(N3_PATTERNS, '.', is);
+  }
+
+  /**
+   * Checks if the stream contains the <i>NQuads</i> patterns.
+   *
+   * @param is input stream to be verified.
+   * @return <code>true</code> if <i>N3</i> patterns are detected, <code>false</code> otherwise.
+   * @throws IOException
+   */
+  public static boolean checkNQuadsFormat(InputStream is) throws IOException {
+    return findPattern(NQUADS_PATTERNS, '.', is);
+  }
+
+  /**
+   * Checks if the stream contains <i>Turtle</i> triple patterns.
+   *
+   * @param is input stream to be verified.
+   * @return <code>true</code> if <i>Turtle</i> patterns are detected, <code>false</code> otherwise.
+   * @throws IOException
+   */
+  public static boolean checkTurtleFormat(InputStream is) throws IOException {
+    String sample = extractDataSample(is, '.');
+    RDFParser turtleParser = Rio.createParser(RDFFormat.TURTLE);
+    turtleParser.setDatatypeHandling(RDFParser.DatatypeHandling.VERIFY);
+    turtleParser.setStopAtFirstError(true);
+    turtleParser.setVerifyData(true);
+    ByteArrayInputStream bais = new ByteArrayInputStream( sample.getBytes() );
+    try {
+      turtleParser.parse(bais, "");
+      return true;
+    } catch (Exception e) {
+      return false;
+    }
+  }
+
+  /*
+   * Checks if the stream contains a valid <i>CSV</i> pattern.
+   *
+   * @param is input stream to be verified.
+   * @return <code>true</code> if <i>CSV</i> patterns are detected, <code>false</code> otherwise.
+   * @throws IOException
+   *
+  public static boolean checkCSVFormat(InputStream is) throws IOException {
+    return CSVReaderBuilder.isCSV(is);
+  }*/
+  //TODO add once CSV has been ported over from Any23
+
+  /**
+   * Tries to apply one of the given patterns on a sample of the input stream.
+   *
+   * @param patterns the patterns to apply.
+   * @param delimiterChar the delimiter of the sample.
+   * @param is the input stream to sample.
+   * @return <code>true</code> if a pattern has been applied, <code>false</code> otherwise.
+   * @throws IOException
+   */
+  private static boolean findPattern(Pattern[] patterns, char delimiterChar, InputStream is)
+      throws IOException {
+    String sample = extractDataSample(is, delimiterChar);
+    for(Pattern pattern : patterns) {
+      if(pattern.matcher(sample).find()) {
+        return true;
+      }
+    }
+    return false;
+  }
+
+  /**
+   * Extracts a sample data from the input stream, from the current
+   * mark to the first <i>breakChar</i> char.
+   *
+   * @param is the input stream to sample.
+   * @param breakChar the char to break to sample.
+   * @return the sample string.
+   * @throws IOException if an error occurs during sampling.
+   */
+  private static String extractDataSample(InputStream is, char breakChar) throws IOException {
+    BufferedReader br = new BufferedReader(new InputStreamReader(is));
+    StringBuilder sb = new StringBuilder();
+    final int MAX_SIZE = 1024 * 2;
+    int c;
+    boolean insideBlock = false;
+    int read = 0;
+    br.mark(MAX_SIZE);
+    try {
+      while ((c = br.read()) != -1) {
+        read++;
+        if (read > MAX_SIZE) {
+          break;
+        }
+        if ('<' == c) {
+          insideBlock = true;
+        } else if ('>' == c) {
+          insideBlock = false;
+        } else if ('"' == c) {
+          insideBlock = !insideBlock;
+        }
+        sb.append((char) c);
+        if (!insideBlock && breakChar == c) {
+          break;
+        }
+      }
+    } finally {
+      is.reset();
+      br.reset();
+    }
+    return sb.toString();
+  }
+
+}
Index: tika-core/src/main/java/org/apache/tika/detect/EmptyDetector.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/detect/EmptyDetector.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/detect/EmptyDetector.java	(working copy)
@@ -28,6 +28,11 @@
 public class EmptyDetector implements Detector {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -2739938917225728418L;
+    
+    /**
      * Singleton instance of this class.
      */
     public static final EmptyDetector INSTANCE = new EmptyDetector();
Index: tika-core/src/main/java/org/apache/tika/detect/MagicDetector.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/detect/MagicDetector.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/detect/MagicDetector.java	(working copy)
@@ -27,6 +27,8 @@
 
 import org.apache.tika.metadata.Metadata;
 import org.apache.tika.mime.MediaType;
+import org.apache.tika.mime.purifier.Purifier;
+import org.apache.tika.mime.purifier.WhiteSpacesPurifier;
 
 /**
  * Content type detection based on magic bytes, i.e. type-specific patterns
@@ -40,6 +42,11 @@
  */
 public class MagicDetector implements Detector {
 
+    /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = -8869394154590907300L;
+
     private static final Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
 
     public static MagicDetector parse(
@@ -354,6 +361,16 @@
             return MediaType.OCTET_STREAM;
         }
 
+        //Purify the InputStream with the 'default'
+        //WhiteSpacePurifier. In the future we could make
+        //this configurable.
+        Purifier purifier = new WhiteSpacesPurifier();
+        try {
+          purifier.purify(input);
+        } catch (IOException e) {
+          throw new RuntimeException("Error while purifying the provided InputStream", e);
+        }
+        
         input.mark(offsetRangeEnd + length);
         try {
             int offset = 0;
Index: tika-core/src/main/java/org/apache/tika/detect/NameDetector.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/detect/NameDetector.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/detect/NameDetector.java	(working copy)
@@ -42,6 +42,11 @@
 public class NameDetector implements Detector {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 2076296572544812146L;
+    
+    /**
      * The regular expression patterns used for type detection.
      */
     private final Map<Pattern, MediaType> patterns;
Index: tika-core/src/main/java/org/apache/tika/detect/TypeDetector.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/detect/TypeDetector.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/detect/TypeDetector.java	(working copy)
@@ -31,6 +31,11 @@
 public class TypeDetector implements Detector {
 
     /**
+     * Generated serial ID
+     */
+    private static final long serialVersionUID = 6963170539158578784L;
+
+    /**
      * Detects the content type of an input document based on a type hint
      * given in the input metadata. The CONTENT_TYPE attribute of the given
      * input metadata is expected to contain the type of the input document.
Index: tika-core/src/main/java/org/apache/tika/extractor/ParserContainerExtractor.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/extractor/ParserContainerExtractor.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/extractor/ParserContainerExtractor.java	(working copy)
@@ -29,6 +29,8 @@
 import org.apache.tika.io.TikaInputStream;
 import org.apache.tika.metadata.Metadata;
 import org.apache.tika.mime.MediaType;
+import org.apache.tika.mime.purifier.Purifier;
+import org.apache.tika.mime.purifier.WhiteSpacesPurifier;
 import org.apache.tika.parser.AbstractParser;
 import org.apache.tika.parser.AutoDetectParser;
 import org.apache.tika.parser.ParseContext;
@@ -53,15 +55,32 @@
 
     private final Detector detector;
 
+    /**
+     * Default constructor using 
+     * {@link org.apache.tika.config.TikaConfig#getDefaultConfig()}
+     */
     public ParserContainerExtractor() {
         this(TikaConfig.getDefaultConfig());
     }
 
+    /**
+     * Supplementary constructor which relies upon an existing
+     * {@link org.apache.tika.config.TikaConfig} instance.
+     * @param config the existing 
+     * {@link org.apache.tika.config.TikaConfig} instance
+     */
     public ParserContainerExtractor(TikaConfig config) {
         this(new AutoDetectParser(config),
                 new DefaultDetector(config.getMimeRepository()));
     }
 
+    /**
+     * Supplementary constructor allowing us to specify the following
+     * @param parser the specific {@link org.apache.tika.parser.Parser} 
+     * implementation
+     * @param detector the specific {@link org.apache.tika.detect.Detector}
+     * implementation.
+     */
     public ParserContainerExtractor(Parser parser, Detector detector) {
         this.parser = parser;
         this.detector = detector;
@@ -79,7 +98,15 @@
         ParseContext context = new ParseContext();
         context.set(Parser.class, new RecursiveParser(recurseExtractor, handler));
         try {
-            parser.parse(stream, new DefaultHandler(), new Metadata(), context);
+          if(stream != null) {
+            try {
+              Purifier purifier = new WhiteSpacesPurifier();
+              purifier.purify(stream);
+            } catch (IOException e) {
+              throw new RuntimeException("Error while purifying the provided input", e);
+            }
+          }
+          parser.parse(stream, new DefaultHandler(), new Metadata(), context);
         } catch (SAXException e) {
             throw new TikaException("Unexpected SAX exception", e);
         }
@@ -87,6 +114,11 @@
 
     private class RecursiveParser extends AbstractParser {
 
+        /**
+         * Generated serial ID
+         */
+        private static final long serialVersionUID = -6803100507239611231L;
+
         private final ContainerExtractor extractor;
 
         private final EmbeddedResourceHandler handler;
@@ -107,8 +139,10 @@
                 Metadata metadata, ParseContext context)
                 throws IOException, SAXException, TikaException {
             TemporaryResources tmp = new TemporaryResources();
+            
             try {
                 TikaInputStream tis = TikaInputStream.get(stream, tmp);
+                
 
                 // Figure out what we have to process
                 String filename = metadata.get(Metadata.RESOURCE_NAME_KEY);
Index: tika-core/src/main/java/org/apache/tika/metadata/PropertyTypeException.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/metadata/PropertyTypeException.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/metadata/PropertyTypeException.java	(working copy)
@@ -29,6 +29,11 @@
  */
 public final class PropertyTypeException extends IllegalArgumentException {
 
+    /**
+     * Generated serial ID
+     */
+  private static final long serialVersionUID = 7164142889292576010L;
+
     public PropertyTypeException(String msg) {
         super(msg);
     }
Index: tika-core/src/main/java/org/apache/tika/language/LanguageProfilerBuilder.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/language/LanguageProfilerBuilder.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/language/LanguageProfilerBuilder.java	(working copy)
@@ -33,6 +33,7 @@
 import java.util.Iterator;
 import java.util.List;
 import java.util.Map;
+
 import org.apache.tika.exception.TikaException;
 
 /**
@@ -692,6 +693,7 @@
             this(16);
         }
 
+        @SuppressWarnings("unused")
         QuickStringBuffer(char[] value) {
             this.value = value;
             count = value.length;
@@ -701,6 +703,7 @@
             value = new char[length];
         }
 
+        @SuppressWarnings("unused")
         QuickStringBuffer(String str) {
             this(str.length() + 16);
             append(str);
Index: tika-core/src/main/java/org/apache/tika/language/LanguageProfile.java
===================================================================
--- tika-core/src/main/java/org/apache/tika/language/LanguageProfile.java	(revision 1556678)
+++ tika-core/src/main/java/org/apache/tika/language/LanguageProfile.java	(working copy)
@@ -62,6 +62,7 @@
     public LanguageProfile(String content, int length) {
         this(length);
 
+        @SuppressWarnings("resource")
         ProfilingWriter writer = new ProfilingWriter(this);
         char[] ch = content.toCharArray();
         writer.write(ch, 0, ch.length);
Index: tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml
===================================================================
--- tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml	(revision 1556678)
+++ tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml	(working copy)
@@ -506,12 +506,24 @@
 
   <mime-type type="application/rdf+xml">
     <root-XML localName="RDF"/>
-    <root-XML localName="RDF" namespaceURI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
+    <root-XML localName="rdf"/>
+    <root-XML namespaceURI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
+    <root-XML namespaceURI="http://purl.org/rss/1.0/" />
+    <alias type="text/rdf" />
     <sub-class-of type="application/xml"/>
     <acronym>RDF/XML</acronym>
     <_comment>XML syntax for RDF graphs</_comment>
+    <magic priority="50">
+      <match value="&lt;rdf:RDF" type="string" offset="0:64" />
+      <match value="&lt;RDF" type="string" offset="0:64" />
+      <match value="xmlns:rdf" type="string" offset="0:64" />
+      <match value="*&lt;DOCTYPE rdf:RDF" type="string" offset="0:120" />
+    </magic>
     <glob pattern="*.rdf"/>
     <glob pattern="*.owl"/>
+    <glob pattern="*.rdfs" />
+    <glob pattern="*.xrdf" />
+    <glob pattern="*.rdfx" />
     <glob pattern="^rdf$" isregex="true"/>
     <glob pattern="^owl$" isregex="true"/>
     <glob pattern="*.xmp"/>
@@ -634,6 +646,14 @@
   </mime-type>
   <mime-type type="application/timestamp-query"/>
   <mime-type type="application/timestamp-reply"/>
+  <mime-type type="application/trix">
+    <sub-class-of type="application/xml" />
+    <root-XML namespaceURI="http://www.w3.org/2004/03/trix/trix-1/"
+      localName="TriX" />
+    <root-XML localName="TriX" />
+    <glob pattern="*.trx" />
+    <glob pattern="*.trix" />
+  </mime-type>
   <mime-type type="application/tve-trigger"/>
   <mime-type type="application/ulpfec"/>
   <mime-type type="application/vemmi"/>
@@ -4609,7 +4629,16 @@
     <glob pattern="*.html"/>
     <glob pattern="*.htm"/>
   </mime-type>
-
+  
+  <mime-type type="text/n3">
+    <alias type="text/rdf+n3" />
+    <alias type="application/n3" />
+    <glob pattern="*.n3" />
+    <magic priority="50">
+      <match value="@prefix" type="string" offset="0:64" />
+    </magic>
+  </mime-type>
+  
   <mime-type type="text/parityfec"/>
 
   <mime-type type="text/plain">
@@ -4739,6 +4768,12 @@
     <glob pattern="*.ms"/>
   </mime-type>
 
+  <mime-type type="text/turtle"> 
+    <alias type="application/x-turtle"/>
+    <alias type="application/turtle"/>
+    <glob pattern="*.ttl"/>
+  </mime-type>
+
   <mime-type type="text/ulpfec"/>
   <mime-type type="text/uri-list">
     <glob pattern="*.uri"/>
@@ -5069,6 +5104,13 @@
     <sub-class-of type="text/plain"/>
   </mime-type>
 
+  <mime-type type="text/x-nquads">
+    <alias type="text/rdf+nq"/>
+    <alias type="text/nq"/>
+    <alias type="application/nq"/>
+    <glob pattern="*.nq"/>
+  </mime-type>
+  
   <mime-type type="text/x-objcsrc">
     <_comment>Objective-C source code</_comment>
     <glob pattern="*.m"/>
Index: tika-core/src/test/java/org/apache/tika/io/LookaheadInputStreamTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/io/LookaheadInputStreamTest.java	(revision 1556678)
+++ tika-core/src/test/java/org/apache/tika/io/LookaheadInputStreamTest.java	(working copy)
@@ -31,6 +31,7 @@
 
     @Test
     public void testNullStream() throws IOException {
+        @SuppressWarnings("resource")
         InputStream lookahead = new LookaheadInputStream(null, 100);
         assertEquals(-1, lookahead.read());
     }
Index: tika-core/src/test/java/org/apache/tika/detect/Any23DetectorTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/detect/Any23DetectorTest.java	(revision 0)
+++ tika-core/src/test/java/org/apache/tika/detect/Any23DetectorTest.java	(revision 0)
@@ -0,0 +1,462 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.tika.detect;
+
+import static org.junit.Assert.*;
+
+import java.io.BufferedInputStream;
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.Arrays;
+import java.util.Collection;
+import java.util.List;
+
+import org.apache.tika.mime.purifier.WhiteSpacesPurifier;
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+import org.openrdf.rio.RDFFormat;
+
+public class Any23DetectorTest {
+
+  private static final String PLAIN  = "text/plain";
+  private static final String HTML   = "text/html";
+  private static final String XML    = "application/xml";
+  private static final String TRIX   = RDFFormat.TRIX.getDefaultMIMEType();
+  private static final String XHTML  = "application/xhtml+xml";
+  private static final String RDFXML = RDFFormat.RDFXML.getDefaultMIMEType();
+  private static final String TURTLE = RDFFormat.TURTLE.getDefaultMIMEType();
+  private static final String N3     = RDFFormat.N3.getDefaultMIMEType();
+  private static final String NQUADS = RDFFormat.NQUADS.getDefaultMIMEType();
+  private static final String CSV    = "text/csv";
+  private static final String RSS    = "application/rss+xml";
+  private static final String ATOM   = "application/atom+xml";
+
+  private Any23Detector detector;
+
+  @Before
+  public void setUp() throws Exception {
+      detector = new Any23Detector(new WhiteSpacesPurifier());
+  }
+
+  @After
+  public void tearDown() throws Exception {
+      detector = null;
+  }
+
+  @Test
+  public void testN3Detection() throws IOException {
+      assertN3Detection("<http://example.org/path> <http://foo.com> <http://example.org/Document/foo#> .");
+      assertN3Detection("_:bnode1 <http://foo.com> _:bnode2 .");
+      assertN3Detection("<http://www.example.com> <http://purl.org/dc/elements/1.1/title> \"x\" .");
+      assertN3Detection("<http://www.example.com> <http://purl.org/dc/elements/1.1/title> \"x\"@it .");
+      assertN3Detection("<http://www.example.com> <http://purl.org/dc/elements/1.1/title> \"x\"^^<http://xxx.net> .");
+      assertN3Detection("<http://www.example.com> <http://purl.org/dc/elements/1.1/title> \"x\"^^xsd:integer .");
+
+      // Wrong N3 line '.'
+      assertN3DetectionFail("" +
+              "<http://wrong.example.org/path> <http://wrong.foo.com> . <http://wrong.org/Document/foo#>"
+      );
+      // NQuads is not mislead with N3.
+      assertN3DetectionFail(
+          "<http://example.org/path> <http://foo.com> <http://dom.org/Document/foo#> <http://path/to/graph> ."
+      );
+  }
+
+  @Test
+  public void testNQuadsDetection() throws IOException {
+      assertNQuadsDetection(
+              "<http://www.ex.eu> <http://foo.com> <http://example.org/Document/foo#> <http://path.to.graph> ."
+      );
+      assertNQuadsDetection(
+              "_:bnode1 <http://foo.com> _:bnode2 <http://path.to.graph> ."
+      );
+      assertNQuadsDetection(
+              "<http://www.ex.eu> <http://purl.org/dc/elements/1.1/title> \"x\" <http://path.to.graph> ."
+      );
+      assertNQuadsDetection(
+              "<http://www.ex.eu> <http://purl.org/dc/elements/1.1/title> \"x\"@it <http://path.to.graph> ."
+      );
+      assertNQuadsDetection(
+              "<http://www.ex.eu> <http://dd.cc.org/1.1/p> \"xxx\"^^<http://www.sp.net/a#tt> <http://path.to.graph> ."
+      );
+      assertNQuadsDetection(
+              "<http://www.ex.eu> <http://purlo.org/1.1/title> \"yyy\"^^xsd:datetime <http://path.to.graph> ."
+      );
+
+      // Wrong NQuads line.
+      assertNQuadsDetectionFail(
+              "<http://www.wrong.com> <http://wrong.com/1.1/tt> \"x\"^^<http://xxx.net/int> . <http://path.to.graph>"
+      );
+      // N3 is not mislead with NQuads.
+      assertNQuadsDetectionFail(
+              "<http://example.org/path> <http://foo.com> <http://example.org/Document/foo#> ."
+      );
+  }
+
+  /* BEGIN: by content. */
+
+  @Test
+  public void testDetectRSS1ByContent() throws Exception {
+      detectMIMEtypeByContent(RDFXML, manifestRss1());
+  }
+
+  private List<String> manifestRss1() {
+      return Arrays.asList("/application/rss1/test1");
+  }
+
+  @Test
+  public void testDetectRSS2ByContent() throws Exception {
+      detectMIMEtypeByContent(RSS, manifestRss2());
+  }
+
+  private List<String> manifestRss2() {
+      return Arrays.asList("/application/rss2/index.html", "/application/rss2/rss2sample.xml", "/application/rss2/test1");
+  }
+
+  @Test
+  public void testDetectRDFN3ByContent() throws Exception {
+      detectMIMEtypeByContent(N3, manifestN3());
+  }
+
+  private List<String> manifestN3() {
+      return Arrays.asList("/application/rdfn3/test1", "/application/rdfn3/test2", "/application/rdfn3/test3");
+  }
+
+  @Test
+  public void testDetectRDFNQuadsByContent() throws Exception {
+      detectMIMEtypeByContent(NQUADS, manifestNQuads());
+  }
+
+  private List<String> manifestNQuads() {
+      return Arrays.asList("/application/nquads/test1.nq", "/application/nquads/test2.nq");
+  }
+
+  @Test
+  public void testDetectRDFXMLByContent() throws Exception {
+      detectMIMEtypeByContent(RDFXML, manifestRdfXml());
+  }
+
+  private List<String> manifestRdfXml() {
+      return Arrays.asList("/application/rdfxml/error.rdf", "/application/rdfxml/foaf", "/application/rdfxml/physics.owl", "/application/rdfxml/test1", "/application/rdfxml/test2", "/application/rdfxml/test3");
+  }
+
+  @Test
+  public void testDetectTriXByContent() throws Exception {
+      detectMIMEtypeByContent(TRIX, manifestTrix());
+  }
+
+  private List<String> manifestTrix() {
+      return Arrays.asList("/application/trix/test1.trx");
+  }
+
+  @Test
+  public void testDetectAtomByContent() throws Exception {
+      detectMIMEtypeByContent(ATOM, manifestAtom());
+  }
+
+  private List<String> manifestAtom() {
+      return Arrays.asList("/application/atom/atom.xml");
+  }
+
+  @Test
+  public void testDetectHTMLByContent() throws Exception {
+      detectMIMEtypeByContent(HTML, manifestHtml());
+  }
+
+  private List<String> manifestHtml() {
+      return Arrays.asList("/text/html/test1");
+  }
+
+  @Test
+  public void testDetectRDFaByContent() throws Exception {
+      detectMIMEtypeByContent(XHTML, manifestRdfa());
+  }
+
+  private List<String> manifestRdfa() {
+      return Arrays.asList("/application/rdfa/false.test", "/application/rdfa/london-gazette.html", "/application/rdfa/mic.xhtml", "/application/rdfa/test1.html");
+  }
+
+  @Test
+  public void testDetectXHTMLByContent() throws Exception {
+      detectMIMEtypeByContent(XHTML, manifestXHtml());
+  }
+
+  private List<String> manifestXHtml() {
+      return Arrays.asList("/application/xhtml/blank-file-header.xhtml", "/application/xhtml/index.html", "/application/xhtml/test1");
+  }
+
+  @Test
+  public void testDetectWSDLByContent() throws Exception {
+      detectMIMEtypeByContent("application/x-wsdl", manifestWsdl());
+  }
+
+  private List<String> manifestWsdl() {
+      return Arrays.asList("/application/wsdl/error.wsdl", "/application/wsdl/test1");
+  }
+
+  @Test
+  public void testDetectZIPByContent() throws Exception {
+      detectMIMEtypeByContent("application/zip", manifestZip());
+  }
+
+  private List<String> manifestZip() {
+      return Arrays.asList("/application/zip/4_entries.zip", "/application/zip/test1.zip", "/application/zip/test2");
+  }
+
+  @Test
+  public void testDetectCSVByContent() throws Exception {
+      detectMIMEtypeByContent(CSV, manifestCsv());
+  }
+
+  private List<String> manifestCsv() {
+      return Arrays.asList("/org/apache/any23/extractor/csv/test-comma.csv", "/org/apache/any23/extractor/csv/test-semicolon.csv", "/org/apache/any23/extractor/csv/test-tab.csv", "/org/apache/any23/extractor/csv/test-type.csv");
+  }
+
+  /* END: by content. */
+
+  /* BEGIN: by content metadata. */
+
+  @Test
+  public void testDetectContentPlainByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(PLAIN, "text/plain");
+  }
+
+  @Test
+  public void testDetectTextRDFByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(RDFXML, "text/rdf");
+  }
+
+  @Test
+  public void testDetectTextN3ByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(N3, "text/rdf+n3");
+  }
+
+  @Test
+  public void testDetectTextNQuadsByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(NQUADS, "text/x-nquads");
+  }
+
+  @Test
+  public void testDetectTextTurtleByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(TURTLE, "text/turtle");
+  }
+
+  @Test
+  public void testDetectRDFXMLByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(RDFXML, "application/rdf+xml");
+  }
+
+  @Test
+  public void testDetectXMLByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(XML, "application/xml");
+  }
+
+  @Test
+  public void testDetectTriXByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(TRIX, "application/trix");
+  }
+
+  @Test
+  public void testDetectExtensionN3ByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(PLAIN, "text/plain");
+  }
+
+  @Test
+  public void testDetectXHTMLByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(XHTML, "application/xhtml+xml");
+  }
+
+  @Test
+  public void testDetectTextHTMLByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(HTML, "text/html");
+  }
+
+  @Test
+  public void testDetectTextPlainByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(PLAIN, "text/plain");
+  }
+
+  @Test
+  public void testDetectApplicationXMLByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(XML, "application/xml");
+  }
+
+  @Test
+  public void testDetectApplicationCSVByMeta() throws IOException {
+      detectMIMETypeByMimeTypeHint(CSV, "text/csv");
+  }
+
+  /* END: by content metadata. */
+
+  /* BEGIN: by content and name. */
+
+  @Test
+  public void testRDFXMLByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(RDFXML, manifestRdfXml());
+  }
+
+  @Test
+  public void testTriXByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(TRIX, manifestTrix());
+  }
+
+  @Test
+  public void testRSS1ByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(RDFXML, manifestRss1());
+  }
+
+  @Test
+  public void testRSS2ByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(RSS, manifestRss2());
+  }
+
+  @Test
+  public void testDetectRDFN3ByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(N3, manifestN3());
+  }
+
+  @Test
+  public void testDetectRDFNQuadsByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(NQUADS, manifestNQuads());
+  }
+
+  @Test
+  public void testAtomByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(ATOM, manifestAtom());
+  }
+
+  @Test
+  public void testHTMLByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(HTML, manifestHtml());
+  }
+
+  @Test
+  public void testXHTMLByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(XHTML, manifestXHtml());
+  }
+
+   @Test
+  public void testWSDLByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName("application/x-wsdl", manifestWsdl());
+  }
+
+  @Test
+  public void testZipByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName("application/zip", manifestZip());
+  }
+
+  @Test
+  public void testRDFaByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(XHTML, manifestRdfa());
+  }
+
+  @Test
+  public void testCSVByContentAndName() throws Exception {
+      detectMIMETypeByContentAndName(CSV, manifestCsv());
+  }
+
+  /* END: by content and name. */
+
+  private void assertN3Detection(String n3Exp) throws IOException {
+      ByteArrayInputStream bais = new ByteArrayInputStream( n3Exp.getBytes() );
+      assertTrue( Any23Detector.checkN3Format(bais) );
+  }
+
+  private void assertN3DetectionFail(String n3Exp) throws IOException {
+      ByteArrayInputStream bais = new ByteArrayInputStream( n3Exp.getBytes() );
+      assertFalse( Any23Detector.checkN3Format(bais) );
+  }
+
+  private void assertNQuadsDetection(String n4Exp) throws IOException {
+      ByteArrayInputStream bais = new ByteArrayInputStream( n4Exp.getBytes() );
+      assertTrue( Any23Detector.checkNQuadsFormat(bais) );
+  }
+
+  private void assertNQuadsDetectionFail(String n4Exp) throws IOException {
+      ByteArrayInputStream bais = new ByteArrayInputStream( n4Exp.getBytes() );
+      assertFalse( Any23Detector.checkNQuadsFormat(bais) );
+  }
+
+  /**
+   * Checks the detection of a specific MIME based on content analysis.
+   *
+   * @param expectedMimeType the expected mime type.
+   * @param testDir the target file.
+   * @throws IOException
+   */
+  private void detectMIMEtypeByContent(String expectedMimeType, Collection<String> manifest)
+  throws IOException {
+      String detectedMimeType;
+      for (String test : manifest) {
+          InputStream is = new BufferedInputStream(this.getClass().getResourceAsStream(test));
+          detectedMimeType = detector.detect(is, null).toString();
+          if (test.contains("error"))
+              Assert.assertNotSame(expectedMimeType, detectedMimeType);
+          else {
+              Assert.assertEquals(
+                      String.format("Error in mimetype detection for file %s", test),
+                      expectedMimeType,
+                      detectedMimeType
+              );
+          }
+          is.close();
+      }
+  }
+
+  /**
+   * Verifies the detection of a specific MIME based on content, filename and metadata MIME type.
+   *
+   * @param expectedMimeType
+   * @param contentTypeHeader
+   * @throws IOException
+   */
+  private void detectMIMETypeByMimeTypeHint(String expectedMimeType, String contentTypeHeader)
+  throws IOException {
+      String detectedMimeType = detector.detect(expectedMimeType, MIMEType.parse(contentTypeHeader)
+      ).toString();
+      Assert.assertEquals(expectedMimeType, detectedMimeType);
+  }
+
+  /**
+   * Verifies the detection of a specific MIME based on content and filename.
+   *
+   * @param expectedMimeType
+   * @param testDir
+   * @throws IOException
+   */
+  private void detectMIMETypeByContentAndName(String expectedMimeType, Collection<String> manifest) throws IOException {
+      String detectedMimeType;
+      for (String test : manifest) {
+          InputStream is = new BufferedInputStream(this.getClass().getResourceAsStream(test));
+          detectedMimeType = detector.guessMIMEType(test, is, null).toString();
+          if (test.contains("error"))
+              Assert.assertNotSame(expectedMimeType, detectedMimeType);
+          else {
+              Assert.assertEquals(
+                      String.format("Error while detecting mimetype in file %s", test),
+                      expectedMimeType,
+                      detectedMimeType
+              );
+          }
+          is.close();
+      }
+  }
+
+}
Index: tika-core/src/test/java/org/apache/tika/language/LanguageProfilerBuilderTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/language/LanguageProfilerBuilderTest.java	(revision 1556678)
+++ tika-core/src/test/java/org/apache/tika/language/LanguageProfilerBuilderTest.java	(working copy)
@@ -81,6 +81,7 @@
         InputStream stream = new FileInputStream(new File(profileName + "."
                 + FILE_EXTENSION));
         try {
+            @SuppressWarnings("resource")
             BufferedReader reader = new BufferedReader(new InputStreamReader(
                     stream, encoding));
             String line = reader.readLine();
Index: tika-core/src/test/java/org/apache/tika/mime/purifier/WhiteSpacesPurifierTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/mime/purifier/WhiteSpacesPurifierTest.java	(revision 0)
+++ tika-core/src/test/java/org/apache/tika/mime/purifier/WhiteSpacesPurifierTest.java	(revision 0)
@@ -0,0 +1,75 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ *  http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.apache.tika.mime.purifier;
+
+import org.apache.tika.io.IOUtils;
+import org.junit.After;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.io.*;
+
+/**
+ * Reference test case for 
+ * {@link org.apache.tika.mime.purifier.WhiteSpacesPurifier}.
+ * The single resource used in this test is located in
+ * <code>src/test/resources/org/apache/tika/mime/purifier/mimeblank-file-header.xhtml</code>.
+ *
+ * @author Davide Palmisano ( dpalmisano@gmail.com )
+ */
+public class WhiteSpacesPurifierTest {
+
+    private Purifier purifier;
+
+    @Before
+    public void setUp() {
+        this.purifier = new WhiteSpacesPurifier();
+    }
+
+    @After
+    public void tearDown() {
+        this.purifier = null;
+    }
+
+    @Test
+    public void testPurification() throws IOException {
+        InputStream inputStream =
+                new BufferedInputStream(this.getClass().getResourceAsStream("blank-file-header.xhtml"));
+        this.purifier.purify(inputStream);
+        Assert.assertNotNull(inputStream);
+        Assert.assertTrue(
+                validatePurification(
+                       IOUtils.toString(inputStream)
+                )
+        );
+        
+    }
+
+    /**
+     * Checks if a {@link String} starts with a proper character.
+     *  
+     * @param string
+     * @return
+     */
+    private boolean validatePurification(String string) {
+        char firstChar = string.charAt(0);
+        return (firstChar != '\t') && (firstChar != '\n') && (firstChar != ' ');
+    }
+
+}
Index: tika-core/src/test/java/org/apache/tika/mime/MimeDetectionTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/mime/MimeDetectionTest.java	(revision 1556678)
+++ tika-core/src/test/java/org/apache/tika/mime/MimeDetectionTest.java	(working copy)
@@ -26,7 +26,6 @@
 
 import org.apache.tika.config.TikaConfig;
 import org.apache.tika.metadata.Metadata;
-
 import org.junit.Before;
 import org.junit.Test;
 
@@ -74,6 +73,7 @@
         testFile("image/cgm", "plotutils-bin-cgm-v3.cgm");
         // test HTML detection of malformed file, previously identified as image/cgm (TIKA-1170)
         testFile("text/html", "test-malformed-header.html.bin");
+        //TODO add tests for new MimeTypes in TIKA-1208
     }
 
     @Test
Index: tika-core/src/test/java/org/apache/tika/parser/CompositeParserTest.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/parser/CompositeParserTest.java	(revision 1556678)
+++ tika-core/src/test/java/org/apache/tika/parser/CompositeParserTest.java	(working copy)
@@ -41,16 +41,31 @@
     @Test
     public void testFindDuplicateParsers() {
         Parser a = new EmptyParser() {
+            /**
+             * Generated serial ID
+             */
+            private static final long serialVersionUID = -8475080505932285169L;
+
             public Set<MediaType> getSupportedTypes(ParseContext context) {
                 return Collections.singleton(MediaType.TEXT_PLAIN);
             }
         };
         Parser b = new EmptyParser() {
+            /**
+             * Generated serial ID
+             */
+             private static final long serialVersionUID = -4846333006512101154L;
+
             public Set<MediaType> getSupportedTypes(ParseContext context) {
                 return Collections.singleton(MediaType.TEXT_PLAIN);
             }
         };
         Parser c = new EmptyParser() {
+            /**
+             * Generated serial ID
+             */
+            private static final long serialVersionUID = -8312856259921893617L;
+
             public Set<MediaType> getSupportedTypes(ParseContext context) {
                 return Collections.singleton(MediaType.OCTET_STREAM);
             }
Index: tika-core/src/test/java/org/apache/tika/parser/DummyParser.java
===================================================================
--- tika-core/src/test/java/org/apache/tika/parser/DummyParser.java	(revision 1556678)
+++ tika-core/src/test/java/org/apache/tika/parser/DummyParser.java	(working copy)
@@ -32,6 +32,10 @@
  * A Dummy Parser for use with unit tests.
  */
 public class DummyParser extends AbstractParser {
+   /**
+    * Generated serial ID
+    */
+   private static final long serialVersionUID = -4197644127672051333L;
    private Set<MediaType> types;
    private Map<String,String> metadata;
    private String xmlText;
Index: tika-core/src/test/resources/org/apache/tika/mime/purifier/blank-file-header.xhtml
===================================================================
--- tika-core/src/test/resources/org/apache/tika/mime/purifier/blank-file-header.xhtml	(revision 0)
+++ tika-core/src/test/resources/org/apache/tika/mime/purifier/blank-file-header.xhtml	(revision 0)
@@ -0,0 +1,13493 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+
+
+
+
+
+
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+	
+
+
+	
+		
+	 	 
+			
+		
+	
+	
+	<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xmlns:og="http://opengraphprotocol.org/schema/" xml:lang="en" lang="en" id="movie">
+		
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+	
+
+
+<head>
+
+
+
+
+		
+		<link rel="image_src" href="http://content6.flixster.com/movie/11/13/43/11134356_pro.jpg" />
+
+        <meta property="og:title" content="Toy Story 3" />
+        <meta property="og:type" content="movie" />
+        <meta property="og:image" content="http://content6.flixster.com/movie/11/13/43/11134356_pro.jpg" />
+        <meta property="og:url" content="http://www.rottentomatoes.com/m/toy_story_3/" />
+        <meta property="fb:admins" content="1106591,615860" />
+		<meta property="fb:app_id" content="326803741017" />
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+		
+		
+			
+			
+				
+				
+				
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+				
+				
+			
+		
+		
+        
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+        <style type="text/css">
+            #movie_info_main .share_social_media { height:auto; margin:0px 10px; padding:0; border:none; }
+        </style>
+		
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#pub=rottentomatoes"></script>
+
+	
+
+
+<title>Toy Story 3 Movie Reviews, Pictures - Rotten Tomatoes</title>
+<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
+
+
+
+
+
+
+	<meta name="description" content="Toy Story 3 - Directed by Lee Unkrich  With Tom Hanks, Tim Allen, Joan Cusack, Don Rickles	&#034;Toy Story 3&#034; brings to life more adventures from Woody, Buzz Lightyear and the rest of Andy&#039;s toys as they go on the road and out of Andy&#039;s room.. Visit Rotten Tomatoes for Photos, Showtimes, Cast, Crew, Reviews, Plot Summary, Comments, Discussions, Taglines, Trailers, Posters, Fan Sites."/>
+
+
+
+
+	<meta name="keywords" content="Toy Story 3, Toy Story 3 movie, Toy Story 3 trailers, reviews, critic reviews, user reviews, previews, pictures, pics, cast, photos, video clips&#034;"/>
+
+
+
+
+	<link rel="canonical" href="http://www.rottentomatoes.com/m/toy_story_3/"/>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/reset.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/base.css?v=20100909c" type="text/css"/>
+
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/common.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/template_main_v2.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/header_v2.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/footer.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/searchbar_v2.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/ads_v2.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/tabs.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/controls.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/roundedcorners.css?v=20100909c" type="text/css"/>
+
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/tableview_v2.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/css/2.0.0/rt_v2.css?v=20100909c" type="text/css"/>
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/rt_print.css?v=20100909c" type="text/css"/>
+		
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/generated/css/mob_v2.css?v=20100909c" type="text/css"/>
+		
+	
+
+
+<!--[if lte IE 6]>
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/ie6_rt_v2.css?v=20100909c" type="text/css"/>
+		
+	
+
+<![endif]-->
+<!--[if IE 7]>
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+			
+			
+			<link rel="stylesheet" href="http://images.rottentomatoescdn.com/files/inc_beta/ie_rt_v2.css?v=20100909c" type="text/css"/>
+		
+	
+
+<![endif]-->
+<!--[if IE 8]>
+	<style type="text/css">body *, div.code { overflow:visible; } </style>
+<![endif]-->
+
+
+
+<link rel="apple-touch-icon" href="http://images.rottentomatoescdn.com/images/icons/apple-touch-icon.png"/>
+
+<link rel="shortcut icon" href="http://images.rottentomatoescdn.com/images/icons/favicon.ico" type="image/x-icon"/>
+
+
+<meta name="application-name" content="Rotten Tomatoes" />
+<meta name="msapplication-task" content="name=Home;action-uri=http://www.rottentomatoes.com;icon-uri=http://images.rottentomatoescdn.com/images/icons/favicon.ico" />
+<meta name="msapplication-task" content="name=Movies In Theaters;action-uri=http://www.rottentomatoes.com/movie/in_theaters.php;icon-uri=http://images.rottentomatoescdn.com/images/icons/intheaters.ico" />
+<meta name="msapplication-task" content="name=Opening This Week;action-uri=http://www.rottentomatoes.com/movie/opening.php;icon-uri=http://images.rottentomatoescdn.com/images/icons/opening.ico" />
+<meta name="msapplication-task" content="name=Upcoming Movies;action-uri=http://www.rottentomatoes.com/movie/upcoming.php;icon-uri=http://images.rottentomatoescdn.com/images/icons/upcoming.ico" />
+<meta name="msapplication-task" content="name=New On DVD;action-uri=http://www.rottentomatoes.com/dvd/new_releases.php;icon-uri=http://images.rottentomatoescdn.com/images/icons/dvd.ico" />
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		<script type="text/javascript" src="http://images.rottentomatoescdn.com/assets/v/20100909c/scripts?f=/files/inc_beta/js/jquery/jquery.js&f=/files/inc_beta/js/jquery/plugins/jquery.elementReady.js&f=/files/inc_beta/rt.js&f=/files/inc_beta/js/jquery/plugins/jquery.rt_searchSuggest.js" charset="utf-8"></script>
+	
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		<script type="text/javascript" src="http://images.rottentomatoescdn.com/assets/v/20100909c/scripts?f=/files/inc_beta/rt_movie.js&f=/files/inc_beta/rt_ratings_new.js&f=/files/inc_beta/js/jquery/ui/ui.core.simple.js&f=/files/inc_beta/js/jquery/plugins/jquery.rt_scrollMultimedia.js&f=/files/inc_beta/js/jquery/plugins/jquery.scrollTo-min.js&f=/files/inc_beta/js/jquery/plugins/jquery.tooltip.min.js&f=/files/inc_beta/rt_jquery_v2.js&f=/files/inc_beta/js/deferredloader.js" charset="utf-8"></script>
+
+	
+	
+
+
+</head>
+	
+	
+
+	
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<body class="rt" id="">
+
+
+
+
+
+
+<style type="text/css">
+
+</style>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="header">
+
+	<div id="header_container">
+
+    	<div id="header_container2">
+
+			<div class="rt_logo_image" id="US"><a href="/">RottenTomatoes.com</a></div>
+
+          		<div id="user_navigation">
+
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<style type="text/css">
+	#fbusercontrols .fbkOptions { color:#285CAB; cursor:pointer; }
+
+ul.topnav {
+	padding-left: 20px;
+}
+ul.topnav li {
+	float: left;
+	margin: 0;
+	padding: 0 15px 0 0;
+	position: relative; /*--Declare X and Y axis base for sub navigation--*/
+}
+ul.topnav li a{
+	padding: 0px 5px;
+	color: #fff;
+	display: block;
+	float: left;
+	text-align: left;
+}
+ul.topnav li span { /*--Drop down trigger styles--*/
+	width: 10px;
+	height: 35px;
+	float: left;
+	background: url(http://images.rottentomatoescdn.com/images/icons/expand_arrow_down.gif) no-repeat center top;
+	margin-top: 3px;
+}
+ul.topnav li span.subhover {
+} 
+ul.topnav li ul.subnav {
+	position: absolute; /*--Important - Keeps subnav from affecting main navigation flow--*/
+	left: 0; 
+	top: 18px;
+	background: #FFF;
+	margin: 0; 
+	padding: 0;
+	display: none;
+	float: left;
+	border: 1px solid #B7BABB;
+}
+ul.topnav li ul.subnav li{
+	margin: 0; 
+	padding: 0;
+	clear: both;
+}
+ul.topnav li ul.subnav li a {
+	width: 173px;
+	padding: 4px 7px;
+}
+ul.topnav li ul.subnav li a:hover { /*--Hover effect for subnav links--*/
+}
+
+</style>
+
+<script type="text/javascript">
+$(document).ready(function(){
+
+	$("ul.subnav").parent().append("<span></span>"); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*)
+
+	$("ul.topnav li span").click(function() { //When trigger is clicked...
+
+		//Following events are applied to the subnav itself (moving subnav up and down)
+		$(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
+
+		$(this).parent().hover(function() {
+		}, function(){
+			$(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
+		});
+
+		//Following events are applied to the trigger (Hover events for the trigger)
+		}).hover(function() {
+			$(this).addClass("subhover"); //On hover over, add class "subhover"
+		}, function(){	//On Hover Out
+			$(this).removeClass("subhover"); //On hover out, remove class "subhover"
+	});
+
+});
+</script>
+
+
+	
+	
+		
+			
+				<div id="usercontrols">
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/login/?url=/m/toy_story_3/" >Log In</a>
+ |
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/register/" >Register</a>
+ |
+			   		<a href="/help_desk/learn_more.php">What is RT?</a>
+
+				</div>
+			
+			
+		
+	
+
+
+
+		
+          		</div>
+          		
+          		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="header_masthead_container">
+
+
+
+<script type="text/javascript">
+if(typeof(tile) == "undefined"){var tile = 1} else {tile++}
+document.write('<scr'+'ipt src="http://ad.doubleclick.net/adj/rt.misc/button;pos=top;tile='+tile+';sz=300x60,88x31;url='+encodeURI(location.pathname)+';test=;ord=1284126877036;?"></scr'+'ipt>');
+</script>
+<noscript><a href="http://ad.doubleclick.net/jump/rt.misc/button;pos=top;tile=1;sz=300x60,88x31;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" target="_blank"><img src="http://ad.doubleclick.net/ad/rt.misc/button;pos=top;tile=1;sz=300x60,88x31;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" border="0" alt=""></a></noscript>
+
+</div>
+
+
+			</div>
+    </div>
+</div>
+
+<div id="nav_bg">
+
+	<div id="nav">
+
+		
+		<ul id="nav_primary">
+	        <li><a href="/" class="" id="nav_primary_home">Home</a></li>
+	        <li><a href="/movie/" class="selected" id="nav_primary_movies">Movies</a></li>
+
+	        <li><a href="/dvd/" class="" id="nav_primary_dvd">DVD</a></li>
+	        <li>
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/"  class="" id="nav_primary_celebrities">Celebrities</a></li>
+	        <li><a href="/news/" class="" id="nav_primary_news">News</a></li>
+	        <li>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/critics/"  class="" id="nav_primary_critics">Critics</a></li>
+	        <li><a href="/trailers_pictures/" class="" id="nav_primary_trailers_pictures">Trailers & Pictures</a></li>
+	        
+        </ul>
+		
+		
+		
+		
+		
+			<ul id="nav_secondary">
+
+	        	<li><a class="" href="/movie/box_office.php">Box Office</a></li>
+	        	<li> | <a class="" href="/movie/in_theaters.php">In Theaters</a></li>
+				<li> | <a class="" href="/movie/opening.php">Opening</a></li>
+	        	<li> | <a class="" href="/movie/upcoming.php">Upcoming</a></li>
+
+				<li> | <a class="" href="/top/">Best Of</a></li>
+	        	<li> | <a class="" href="/movie/certified_fresh.php">Certified Fresh</a></li>
+	        	
+	        </ul>
+		
+		
+		
+		
+		
+		
+		
+		
+		
+        
+
+	</div>
+
+</div>
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+			
+				
+				
+				
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+				
+				
+			
+			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+	
+	<div id="nav_shadow_bg">
+		<div id="main_body_shadow" class="clearfix">
+			<div id="main_body">
+				
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="searchBar">
+    <form id="searchformnew" name="searchformnew" method="get" action="/search/search.php">
+        <fieldset>
+            <input type="text" onblur="this.className='';" onfocus="this.className='selected'; if (value == 'ZIP Code or City, State' || value == 'Find a movie or celeb or critic here!') { value ='' }" id="mini_searchbox" value="Find a movie or celeb or critic here!" name="search" gtbfieldid="27" autocomplete="off" />
+            <input type="hidden" value="rt" name="sitesearch"/>
+
+            <input type="image" value="Submit" src="http://images.rottentomatoes.com/images_REDESIGN/template/search_button.jpg" id="searchbar_searchBtn">
+            <div id="search_most_popular">
+                <span><strong>Trending Searches:</strong></span>
+                
+	                <span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/machete/"  class="" >Machete</a></span>
+                
+	                <span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/american/"  class="" >The American</a></span>
+
+                
+	                <span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/resident_evil_afterlife/"  class="" >Resident Evil: Afterlife</a></span>
+                
+	                <span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/last_exorcism/"  class="" >The Last Exorcism</a></span>
+                
+            </div>
+			
+        </fieldset>
+    </form>
+    <div id="searchBar_right"></div>
+
+</div>
+
+	
+				
+	                    <div class="clearfix" id="header_leaderboard_ad">
+	                    	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="leaderboard_ad"  >
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+ 
+ 
+ 
+
+<!-- Begin DART Tag-->
+<script type="text/javascript">
+if(typeof(tile) == "undefined"){var tile = 1} else {tile++}
+if(typeof(ord) == "undefined" || ord == null){var ord = Math.random()*10000000000000000;}
+if(typeof(test) == "undefined" || test == null){
+    var test="0";
+    var testParam = getURLParam("test");
+    if(testParam != null && testParam.length > 0 && !isNaN(testParam)){test=testParam;}
+}
+document.write('<scr'+'ipt src="http://ad.doubleclick.net/adj/rt.movies/movielandingpage;pos=top;tile='+tile+';sz=984x250,800x250,728x90;dcopt=ist;;genre=animation,science-fiction-fantasy,comedy,kids-family;url='+encodeURI(location.pathname)+';test=' + test + ';ord='+ord+';?"></scr'+'ipt>');
+</script>
+<noscript><a href="http://ad.doubleclick.net/jump/rt.movies/movielandingpage;pos=top;tile=1;sz=984x250,800x250,728x90;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" target="_blank"><img src="http://ad.doubleclick.net/ad/rt.movies/movielandingpage;pos=top;tile=1;sz=984x250,800x250,728x90;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" border="0" alt=""></a></noscript>
+<!-- End DART Tag-->
+</div>
+	                    </div>
+			    
+	            
+				
+					<div id="breadcrumb">
+
+	
+		
+			
+				
+			
+			
+			
+		
+		<span class="topBreadCrumb"><a href="/movie/">Movies</a></span> <span class="topBreadCrumb">/</span> 
+	
+		
+			
+			
+			
+				
+			
+		
+		<span class="subLevelCrumb"><a href="/movie/in_theaters.php">In Theaters</a></span> <span class="subLevelCrumb">/</span> 
+	
+		
+			
+			
+				
+			
+			
+		
+		<span class="minLevelCrumb">Toy Story 3</span> 
+	
+    
+</div>
+				
+				
+				
+	                
+	                
+	    	        	<div class="template_wrapper">
+	        	    	    <div xmlns:v="http://rdf.data-vocabulary.org/#" typeof="v:Movie">
+				<div class="col_679 col_left main">
+
+					<div id="movie_info_main" class="content ">
+						<div class="content_body clearfix noHead">
+						
+							<div class="movie_tools_area">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/"  class="" >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+ 
+
+
+
+<img src="http://content6.flixster.com/movie/11/13/43/11134356_det.jpg" width="144" height="213" alt="Toy Story 3" title="Toy Story 3"  rel="v:image" />
+</a>
+                                 
+								<ul id="movie_tools_area_links" class="normalViewList">
+									
+									
+									
+										
+										
+											<li>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/login/?url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F" >Write a Review</a>
+
+</li>
+										
+									
+									<li><a href="blank-file-header.xhtml#contentReviews">Read Reviews</a></li>
+									
+										
+										
+											<li>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/login/?url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F" >Add to List</a>
+</li>
+										
+									
+									
+									<li><a href="http://affiliates.allposters.com/link/redirect.asp?aid=15282&amp;c=z&amp;categoryID=101&amp;search=Toy+Story+3" target="_blank">Buy Poster 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="External Icon" border="0" alt="External Icon"/></a></li>
+									
+										<li><a href="http://www.disney.com/ToyStory" target="_blank">Visit Official Site 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="External Icon" border="0" alt="External Icon"/></a></li>
+									
+								</ul>
+						
+							</div>
+
+							
+							<div id="movie_info_area" class="movie_info_area">
+							
+								
+									
+								
+								
+							
+							
+								<h1 class="movie_title clearfix"><span property="v:name">Toy Story 3 (2010)</span></h1>
+	
+								<ul id="tomatometer_nav" class="ui-tabs-nav ui-tabs-nav-liquid">
+									<li class="ui-tabs-selected"><a title="
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+99%" href="/m/toy_story_3/?name_order=asc"><span>T-Meter Critics</span></a></li>
+									<li ><a title="
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+100%" href="/m/toy_story_3/?critic=creamcrop"><span>Top Critics</span></a></li>
+									<li ><a title="
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+91%" href="reviews_users.php"><span>RT Community</span></a></li>
+									<li ><a title="
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+N/A" href="reviews_mycritics.php"><span>My Critics</span></a></li>
+
+									<li ><a title="
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+N/A" href="reviews_friends.php"><span>My Friends</span></a></li>
+									
+								</ul>
+								<div id="tomatometer" class="dialog chromeGreenMain">
+									<div class="dialog_content clearfix" rel="v:rating">
+										<div class="t"></div>
+										<span typeof="v:Review-aggregate">
+											<div id="tomatometer_score" style="" rel="v:rating">
+												
+													
+													
+														
+													
+												
+												<span class="percent" property="v:average">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+99</span>
+												<span property="v:best" content="100"/>
+												
+													
+														<sup class="symbol ">%</sup>
+													
+													
+												
+											</div>
+											<div id="tomatometer_bar">
+												<h6>Tomatometer</h6>
+												<div id="tomatometer_bar_container">
+
+													
+														<img class="fl" src="http://images.rottentomatoes.com/images/tomatometer/tomatometer_bar_over_left.png" width="6" height="19" alt="Template Image" />
+														
+															
+															
+																
+															
+															<img class="fl" src="http://images.rottentomatoes.com/images/tomatometer/tomatometer_bar_over_middle.gif" width="203" height="19" alt="Template Image" />    
+															
+														
+													
+												</div>
+												<p id="tomatometer_bar_help" class="help" title="The Tomatometer measures the percentage of positive reviews from Approved Tomatometer Critics for a certain movie.">How does the Tomatometer work <img id="rater_mob_helpicon" src="http://images.rottentomatoes.com/images/icons/helpGreen_sm_whitebg.gif" alt="Help Icon" /></p>
+											</div>
+						
+											<div id="tomatometer_certified_fresh" >
+												
+													
+														<span class="iconset iconset_rt_lg certifiedfresh_lg hide" title="Certified Fresh"></span>
+													
+													
+													
+												
+											</div>
+						
+											<div id="tomatometer_data">
+
+												<p>Reviews Counted:<span property="v:count">237</span></p>
+												<p id="tomatometer_data_fresh">Fresh:<span>234</span></p>
+												<p id="tomatometer_data_rotten">Rotten:<span>3</span></p>
+												<p>Average Rating:<span>8.8/10</span></p>
+											</div>
+
+											
+											<span property="v:summary">
+												<p id="consensus">
+													<span>Consensus:</span> Deftly blending comedy, adventure, and honest  emotion, <em>Toy Story 3</em> is a rare second sequel that really works.
+												</p>
+											</span>
+											
+										</span>
+									</div>
+
+					
+									<div class="b"><div></div></div>
+								</div>
+
+                
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+
+
+
+<div class="share_social_media clearfix">
+    <div class="social_button_min first">
+    
+		
+		
+		
+			
+			
+		      <style>
+		          #fblike iframe {max-width: 300px}
+		      </style>
+		      <div id="fblike">
+		          <fb:like href="http://www.rottentomatoes.com/m/toy_story_3/" show_faces="false" debug="true"></fb:like>
+		      </div>
+
+			
+		
+
+		
+		
+
+    
+    </div>
+    
+    <div style="margin-top: 2px;" class="fr">
+        <div class="social_button_min">
+            <!-- AddThis Button BEGIN -->
+            <div class="addthis_toolbox addthis_default_style">
+            <a href="http://addthis.com/bookmark.php?v=250&username=rottentomatoes" class="addthis_button_compact">Share</a>
+            <span class="addthis_separator">|</span>
+            <a class="addthis_button_facebook"></a>
+
+            <a class="addthis_button_myspace"></a>
+            <a class="addthis_button_google"></a>
+            <a class="addthis_button_twitter"></a>
+            </div>
+            <script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js#username=rottentomatoes"></script>
+            <!-- AddThis Button END -->
+        </div>
+    </div>
+
+</div>
+
+
+
+							
+								<div id="movie_info_box">
+									<div id="movie_stats">
+										<div class="fl">
+											
+											
+											<p>
+												<span class="label">Runtime:</span> <span class="content" property="v:runtime" content="162">1 hr. 43 min.</span>
+
+											</p>
+											
+											
+											<p>
+												<span class="label">Genre:</span> 
+												<span class="content">
+													
+														<a href="/movie/browser.php?movietype=1&genre=2"><span property="v:genre">Animation</span></a>, 
+													
+														<a href="/movie/browser.php?movietype=1&genre=14"><span property="v:genre">Science Fiction & Fantasy</span></a>, 
+													
+														<a href="/movie/browser.php?movietype=1&genre=6"><span property="v:genre">Comedy</span></a>, 
+													
+														<a href="/movie/browser.php?movietype=1&genre=11"><span property="v:genre">Kids & Family</span></a>
+
+													
+												</span>
+											</p>
+											
+										</div>
+										<div class="fl">
+											<p><span class="label">Theatrical Release:</span> <span class="content"><span property="v:initialReleaseDate" content="2010-06-18">Jun 18, 2010 Wide</span> 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+</span></p>
+											<p><span class="label">US Box Office:</span> <span class="content">&#36;408.1M</span></p>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+										</div>
+									</div>
+									<div id="movie_synopsis">
+										<p>
+											<span class="label">Synopsis:</span> 
+											<span id="movie_synopsis_blurb" style="display: inline;" property="v:summary"> "Toy Story 3" brings to life more adventures from Woody, Buzz Lightyear and the rest of Andy's toys as they go on the road and out of Andy's room. </span>
+											<span id="movie_synopsis_all" style="display: none;">"Toy Story 3" brings to life more adventures from Woody, Buzz Lightyear and the rest of Andy's toys as they go on the road and out of Andy's room.</span>
+
+											<a href="blank-file-header.xhtml#" id="movie_synopsis_link">[More]</a>
+										</p>
+									</div>
+									<div id="movie_castcrew">
+										<p class="movie_cast_shortened" style="display: block;"><span class="label">Starring:</span> 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/tom_hanks/"  rel="v:starring">Tom Hanks</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/tim_allen/"  rel="v:starring">Tim Allen</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/joan_cusack/"  rel="v:starring">Joan Cusack</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/don_rickles/"  rel="v:starring">Don Rickles</a></p>
+										<p class="movie_cast_all" style="display: none;"><span class="label">Starring:</span> 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/tom_hanks/" >Tom Hanks</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/tim_allen/" >Tim Allen</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/joan_cusack/" >Joan Cusack</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/don_rickles/" >Don Rickles</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/wallace_shawn/" >Wallace Shawn</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/ned_beatty/" >Ned Beatty</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/john_ratzenberger/" >John Ratzenberger</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/estelle_harris/" >Estelle Harris</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/michael_keaton/" >Michael Keaton</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/john_morris/" >John Morris</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/emily_hahn/" >Emily Hahn</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/laurie_metcalf/" >Laurie Metcalf</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/blake_clark/" >Blake Clark</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/teddy_newton/" >Teddy Newton</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/bud_luckey/" >Bud Luckey</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/beatrice_miller/" >Beatrice Miller</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/javier_fernandez_pena/" >Javier Fernández-Peña</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/lori_alan/" >Lori Alan</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/jeff_pidgeon/" >Jeff Pidgeon</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/kristen_schaal/" >Kristen Schaal</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/john_cygan/" >John Cygan</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/jack_angel/" >Jack Angel</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/jan_rabson/" >Jan Rabson</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/richard_kind/" >Richard Kind</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/erik_von_detten/" >Erik von Detten</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/charlie_bright/" >Charlie Bright</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/amber_kroner/" >Amber Kroner</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/brianna_maiwand/" >Brianna Maiwand</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/jack_willis/" >Jack Willis</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/jodi_benson/" >Jodi Benson</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/timothy_dalton/" >Timothy Dalton</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/jeff_garlin/" >Jeff Garlin</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/whoopi_goldberg/" >Whoopi Goldberg</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/bonnie_hunt/" >Bonnie Hunt</a>, 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/r_lee_ermey/" >R. Lee Ermey</a></p>
+                                        
+                                            <p class="movie_crew_shortened" style="display: block;">
+                                                <span class="label">Director:</span>
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/lee_unkrich/"  rel="v:directedBy">Lee Unkrich</a>
+                                                    
+                                                
+                                            </p>       
+                                        
+                                        <p class="movie_crew_all" style="display: none;">
+                                            
+                                                <span class="label">Director:</span>
+
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/lee_unkrich/" >Lee Unkrich</a>
+                                                    
+                                                <br/>
+                                            
+                                            
+                                                <span class="label">Screenwriter:</span>
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/michael_arndt/" >Michael Arndt</a>
+                                                    , 
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/john_lasseter/" >John Lasseter</a>
+                                                    , 
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/andrew_stanton/" >Andrew Stanton</a>
+                                                    , 
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/lee_unkrich/" >Lee Unkrich</a>
+                                                    , 
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/andrew_stanton_and_lee_unkrich/" >Andrew Stanton and Lee Unkrich</a>
+                                                    
+                                                <br/>
+                                            
+                                            
+                                                <span class="label">Producer:</span>
+                                                
+                                                    
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/celebrity/darla_k_anderson/" >Darla K Anderson</a>
+
+                                                    
+                                                <br/>
+                                            
+                                            
+                                                <span class="label">Studio:</span> Walt Disney Pictures
+                                            
+                                        </p>
+
+                                        <p><a href="blank-file-header.xhtml#" id="movie_castcrew_link">[See More Credits]</a></p>
+                                    </div>
+								</div> 
+	
+								
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<script type="text/javascript">
+/* <![CDATA[ */
+
+										function working_ajax(id, url) {
+											var target = '#' + id;
+											if (id == 'div_trailers_row_ID_0') {
+												$('#div_pictures_row_ID_0').hide();
+												$('#div_trailers_row_ID_0').show();
+											} else {
+												$('#div_trailers_row_ID_0').hide();
+												$('#div_pictures_row_ID_0').show();
+											}
+											if (jQuery.trim($(target).html()) == '') {
+												$(target).html('<div class="loading strip_loading"></div>');
+												$.ajax({
+													type: "GET",
+													url: url,
+													success: function(text) {
+														$(target).html(text);
+													}
+												});
+											}
+										}
+			
+										$(document).ready(function() {
+											$("th.toggle a").tooltip({
+												delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: " - ",  extraClass: "bubbleFixedLeftXSmallTop", top: -75, left: -2
+											});
+											
+											// Preload tooltip bgs
+											if ($.browser.msie && ($.browser.version == 6)) { var bubbleExt = "gif"; } else { var bubbleExt = "png"; }
+											var bubbleSmall = "http://images.rottentomatoescdn.com/images_REDESIGN/template/bubble_small." + bubbleExt;
+											var bubbleXSmall = "http://images.rottentomatoescdn.com/images_REDESIGN/template/bubble_xsmall." + bubbleExt;
+											var bubbleLeftXSmall = "http://images.rottentomatoescdn.com/images_REDESIGN/template/bubbleLeft_xsmall." + bubbleExt;
+											$.preloadImages(bubbleSmall, bubbleXSmall);
+											
+											// toggles tooltip selected state
+											$('ul#trailers_pictures_nav li').click(function() {
+												$(this).addClass('ui-tabs-selected');
+												if ($(this).hasClass('ui-tabs-selected')) {
+													$('ul#trailers_pictures_nav li').removeAttr('class');
+												}
+												$(this).addClass('ui-tabs-selected');
+												// keep dupe addclasses to fix unknown UI-Tabs click conflict
+											});
+										});
+									
+/* ]]> */
+</script>
+
+			
+									<ul id="trailers_pictures_nav" class="ui-tabs-nav ui-tabs-nav-liquid">
+										<li class="ui-tabs-selected">
+											<a title="" href="javascript:working_ajax('div_trailers_row_ID_0', '/trailers_pictures/photo_strip_ajax.php?media_type=trailers&skin=mob&type=2&id=770672122');"><span>Trailers</span></a>
+										</li>
+										<li >
+											<a title="" href="javascript:working_ajax('div_pictures_row_ID_0', '/trailers_pictures/photo_strip_ajax.php?media_type=pictures&skin=mob&type=2&id=770672122');"><span>Pictures</span></a>
+										</li>
+
+									</ul>
+									
+									<div id="multimedia_thumbnails_empty" class="dialog chromeGreenMain">
+										<div class="dialog_content clearfix">
+											<div class="t"></div>
+											<div class="photostrip_container">
+												<div class="photostrip" id="row_ID_0">
+													<div class="photostrip_toggle">
+														<div id="div_trailers_row_ID_0" class="trailers" >
+															
+																
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<script type="text/javascript">
+	$(document).ready(function() {
+		
+			
+			$("a#thumbnail_trailer_link_httpwwwvideodetectivecomphotos346514553712jpg18").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpwwwvideodetectivecomphotos346514553712jpg18").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos675628378422jpg17").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos675628378422jpg17").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514638jpg16").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514638jpg16").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos677828470428jpg15").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos677828470428jpg15").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514412jpg14").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514412jpg14").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514331jpg13").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514331jpg13").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514541jpg12").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514541jpg12").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514242jpg11").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514242jpg11").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678428494220jpg10").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678428494220jpg10").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678628504939jpg9").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678628504939jpg9").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150941jpg8").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150941jpg8").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150701jpg7").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150701jpg7").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150804jpg6").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150804jpg6").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos6690280985223350jpg5").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos6690280985223350jpg5").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos6688636492280jpg4").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos6688636492280jpg4").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos659727710218jpg3").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos659727710218jpg3").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos644527069527jpg2").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos644527069527jpg2").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+			
+			$("a#thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150645jpg1").tooltip(              { delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+			$("div#thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150645jpg1").tooltip({ delay:500, showURL:false, fixPNG:true, opacity:1, showBody:"", extraClass:"bubbleFixedSmallTop", top:-96, left:-60 });
+		
+
+		$("#multimedia_partial_trailers_movie_770672122_thumbnail_group_pane").rt_scrollMultimedia( {
+			MAX_PHOTOS: 18,
+			id: "multimedia_partial_trailers_movie_770672122",
+			curThumbGroup: 1,
+			maxThumbGroup: 5,
+			numThumbs: 4,
+			thumbGroupContainerWidth: 490,
+			default_time: 800
+		});
+		if (!BROWSER_IE6) {
+			$('.videoImg').each(function() {
+				if ($(this).children('div.videoImgControl a')) {
+					$(this)
+					.mouseover(function() {
+						$(this).children('a.abstract').addClass("hover");
+						$(this).children('div.videoImgControl').children('a').addClass("hover");
+					})
+					.mouseout(function() {
+						$(this).children('a.abstract').removeClass("hover");
+						$(this).children('div.videoImgControl').children('a').removeClass("hover");
+					})
+					.mousedown(function() {
+						$(this).children('div.videoImgControl').children('a').toggleClass("active");
+					})
+					.mouseup(function() {
+						$(this).children('div.videoImgControl').children('a').removeClass("hover active");
+					});
+				}
+			});
+		}
+	});
+</script>
+
+<div id="photostrip_thumbnails" class="thumbnails_module">
+	<div class="thumb_container">
+		<div id="multimedia_partial_trailers_movie_770672122_thumbnail_group_pane" class="thumbnail_trailer_group_pane fl">
+			<ul style="width:3920px;" id="multimedia_partial_trailers_movie_770672122_thumbnail_group_container" class="thumbnail_trailer_group_container">
+				
+					
+						<li id="multimedia_partial_trailers_movie_770672122_thumbnail_group_id_1" class="thumbnail_group clearfix">
+					
+						
+					<div class="thumbnail_trailer_container fl first">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11028566"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpwwwvideodetectivecomphotos346514553712jpg18">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://www.videodetective.com/photos/3465/14553712_.jpg" alt="Toy Story 3" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpwwwvideodetectivecomphotos346514553712jpg18" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11028566"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108601"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos675628378422jpg17">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6756/28378422_.jpg" alt="TOY STORY 3 MEET KEN" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos675628378422jpg17" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108601"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110784"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514638jpg16">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6789/28514638_.jpg" alt="TOY STORY 3 OLD FRIENDS ONLINE FEATURETTE" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514638jpg16" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110784"  class="medium"><span>&gt;</span></a>
+							</div>
+
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108600"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos677828470428jpg15">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6778/28470428_.jpg" alt="TOY STORY 3 LOOK ON THE SUNNYSIDE ONLINE FEATURETTE" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos677828470428jpg15" class="videoImgControl">
+
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108600"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+						</li>
+					
+				
+					
+						<li id="multimedia_partial_trailers_movie_770672122_thumbnail_group_id_2" class="thumbnail_group clearfix">
+					
+						
+					<div class="thumbnail_trailer_container fl first">
+						<div class="thumbnail videoImg">
+
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110786"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514412jpg14">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6789/28514412_.jpg" alt="TOY STORY 3 KENS DATING TIP 3" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514412jpg14" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110786"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110787"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514331jpg13">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6789/28514331_.jpg" alt="TOY STORY 3 KENS DATING TIP 2" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514331jpg13" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110787"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110785"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514541jpg12">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6789/28514541_.jpg" alt="TOY STORY 3 NEW FACES ONLINE FEATURETTE" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514541jpg12" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110785"  class="medium"><span>&gt;</span></a>
+
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110788"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678928514242jpg11">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6789/28514242_.jpg" alt="TOY STORY 3 KENS DATING TIP 1" width="106" height="80"  />
+							</a>
+
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678928514242jpg11" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110788"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+						</li>
+					
+				
+					
+						<li id="multimedia_partial_trailers_movie_770672122_thumbnail_group_id_3" class="thumbnail_group clearfix">
+					
+						
+					<div class="thumbnail_trailer_container fl first">
+
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11109466"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678428494220jpg10">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6784/28494220_.jpg" alt="TOY STORY 3 GROOVIN WITH KEN" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678428494220jpg10" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11109466"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110789"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos678628504939jpg9">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6786/28504939_.jpg" alt="TOY STORY 3 GREAT ESCAPE POD" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos678628504939jpg9" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11110789"  class="medium"><span>&gt;</span></a>
+							</div>
+
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108602"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150941jpg8">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6702/28150941_.jpg" alt="TOY STORY 3 CHARACTER TURN BUTTERCUP" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150941jpg8" class="videoImgControl">
+
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108602"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108604"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150701jpg7">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6702/28150701_.jpg" alt="TOY STORY 3 CHARACTER TURN PEAS-IN-A-POD" width="106" height="80"  />
+
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150701jpg7" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108604"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+						</li>
+					
+				
+					
+						<li id="multimedia_partial_trailers_movie_770672122_thumbnail_group_id_4" class="thumbnail_group clearfix">
+
+					
+						
+					<div class="thumbnail_trailer_container fl first">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108603"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150804jpg6">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6702/28150804_.jpg" alt="TOY STORY 3 CHARACTER TURN LOTS-O-HUGGIN BEAR" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150804jpg6" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108603"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098010"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos6690280985223350jpg5">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6690/28098522_3350.jpg" alt="TOY STORY 3 TRAILER 2" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos6690280985223350jpg5" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098010"  class="medium"><span>&gt;</span></a>
+
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098011"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos6688636492280jpg4">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6688/636492_280.jpg" alt="TOY STORY 3 UK" width="106" height="80"  />
+							</a>
+
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos6688636492280jpg4" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098011"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098012"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos659727710218jpg3">
+
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6597/27710218_.jpg" alt="TOY STORY 3 SNEAK PEAK" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos659727710218jpg3" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098012"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+						</li>
+
+					
+				
+					
+						<li id="multimedia_partial_trailers_movie_770672122_thumbnail_group_id_5" class="thumbnail_group clearfix">
+					
+						
+					<div class="thumbnail_trailer_container fl first">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098013"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos644527069527jpg2">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6445/27069527_.jpg" alt="TOY STORY 3 TRAILER 1" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos644527069527jpg2" class="videoImgControl">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11098013"  class="medium"><span>&gt;</span></a>
+							</div>
+
+						</div>
+					</div>
+
+					
+				
+					
+						
+					<div class="thumbnail_trailer_container fl ">
+						<div class="thumbnail videoImg">
+							
+							
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108605"  rel="v:trailerUrl" class="thumbnail_container_img_abstract" id="thumbnail_trailer_link_httpcontentinternetvideoarchivecomcontentphotos670228150645jpg1">
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://content.internetvideoarchive.com/content/photos/6702/28150645_.jpg" alt="TOY STORY 3 CHARACTER TURN KEN" width="106" height="80"  />
+							</a>
+							<div id="thumbnail_trailer_link_videobutton_httpcontentinternetvideoarchivecomcontentphotos670228150645jpg1" class="videoImgControl">
+
+								
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/trailers/11108605"  class="medium"><span>&gt;</span></a>
+							</div>
+						</div>
+					</div>
+
+					
+						</li>
+					
+				
+			</ul>
+		</div>
+	</div>
+
+	<div class="thumb_nav_container clearfix">
+		<div class="thumb_nav_btn_container first"><button type="submit" id="multimedia_partial_trailers_movie_770672122_thumb_nav_first" name="thumb_nav_submit" class="submitBtn_disabled thumb_nav_btn" value="first"><span>|&lt;</span></button></div>
+		<div class="thumb_nav_btn_container"><button type="submit" id="multimedia_partial_trailers_movie_770672122_thumb_nav_prev" name="thumb_nav_submit" class="submitBtn thumb_nav_btn" value="prev"><span>&lt;&lt;</span></button></div>
+		<div class="thumb_nav_descriptor_container">
+			<div id="multimedia_partial_trailers_movie_770672122_thumb_nav_descriptor" class="thumb_nav_descriptor">
+				1 - 4 of 18
+			</div>
+		</div>
+
+		<div class="thumb_nav_btn_container"><button type="submit" id="multimedia_partial_trailers_movie_770672122_thumb_nav_next" name="thumb_nav_submit" class="submitBtn thumb_nav_btn" value="next"><span>&gt;&gt;</span></button></div>
+		<div class="thumb_nav_btn_container clearfix"><button type="submit" id="multimedia_partial_trailers_movie_770672122_thumb_nav_last" name="thumb_nav_submit" class="submitBtn thumb_nav_btn" value="last"><span>&gt;|</span></button></div>
+	</div>
+</div>
+															
+														</div>
+														<div id="div_pictures_row_ID_0" class="pictures" style="display:none;">
+															
+														</div>
+													</div>
+												</div>
+
+											</div>
+											
+											<p id="seemore" class="clearfix"><a href="/trailers_pictures/">See More Movie Trailers &amp; Pictures</a></p>
+										</div>
+										<div class="b"><div></div></div>
+									</div>
+								
+							</div>
+						</div>
+
+					</div>
+					
+					
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div class="content " id="sell_thru_main">
+	
+		
+			<div class="content_header_wrapper">
+				<div class="content_header">
+					<div class="content_inner">
+						
+						
+							
+								
+									<h3>GET THIS MOVIE</h3>
+								
+								
+							
+						
+						
+						
+						
+					</div>
+				</div>
+
+			</div>
+		
+		
+	
+	<div class="content_body clearfix ">
+		
+						 
+						
+						
+							<h6>Rent DVD</h6>
+							<div id="netflix" class="content_abstract">
+							<div class="white">
+								<div class="content_abstract_cornerContainer">
+									<div class="content_abstract_corner1">&nbsp;</div>
+									<div class="content_abstract_corner2">&nbsp;</div>
+
+								</div>
+								<div class="content_abstract_content">
+									<div class="content_abstract_content2">
+										<div id="rentdvd">
+											
+												
+												
+													
+												
+											
+											<script type="text/javascript" src="http://jsapi.netflix.com/us/api/js/api.js">
+												{
+													"button_type" : ["SAVE_BUTTON"],
+													"title_id" : "http://api.netflix.com/catalog/titles/movies/http://api.netflix.com/catalog/movie/70116690",
+													"show_logo" : "true",
+													"x" : "50",
+													"y" : "-50", 
+													"dom_id" : "netflix_content", 
+													"application_id" : "5cw86twej4ss35upf27wwn37"
+												}
+											</script>
+											<div id="netflix_content" class="valign_container_outer">
+												<div class="valign_container_middle">
+													<p class="valign_container_inner">Click on the "SAVE" button to put this movie into your Netflix queue.</p>
+
+												</div>
+											</div>
+										</div>
+									</div>
+								</div>
+								<div class="content_abstract_cornerContainer">
+									<div class="content_abstract_corner3">&nbsp;</div>
+									<div class="content_abstract_corner4">&nbsp;</div>
+								</div>
+
+							</div>
+							</div>
+							 
+						
+	</div>
+</div>
+					 
+					
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div class="content " id="contentReviews">
+	
+		
+			<div class="content_header_wrapper">
+				<div class="content_header">
+					<div class="content_inner">
+						
+						
+							
+								
+									<h3>REVIEWS FOR TOY STORY 3</h3>
+
+								
+								
+							
+						
+						
+						
+						
+					</div>
+				</div>
+			</div>
+		
+		
+	
+	<div class="content_body clearfix ">
+		
+	
+						<ul class="ui-tabs-nav">    
+							<li class="ui-tabs-selected"><a href="/m/toy_story_3/?name_order=asc#contentReviews" title=""><span>T-Meter Critics</span></a></li>
+							<li ><a href="/m/toy_story_3/?critic=creamcrop#contentReviews" title=""><span>Top Critics</span></a></li>
+							<li ><a href="reviews_users.php#contentReviews" title=""><span>RT Community</span></a></li>
+
+							<li ><a href="reviews_mycritics.php#contentReviews" title=""><span>My Critics</span></a></li>
+							<li ><a href="reviews_friends.php#contentReviews" title=""><span>My Friends</span></a></li>
+							
+						</ul>
+						<div id="movieobjectnav" class="tertiarynav">
+							<div id="ReviewsBlock" class="content_abstract_tertiarynav">
+								<div class="content_abstract_tertiarynav_cornerContainer">
+									<div class="content_abstract_tertiarynav_corner1">&nbsp;</div>
+									<div class="content_abstract_tertiarynav_corner2">&nbsp;</div>
+
+								</div>
+								<div id="Reviews_Container_Content" class="content_abstract_tertiarynav_content clearfix">
+	
+									
+										
+										
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+	<div class="main_reviews_column_nav">
+		<div class="fl">1 - 20 of 237 <span style="font-weight:normal;">(sorted by date)</span></div>
+		<div class="fr blue_link_sm" style="width:300px; text-align:right;">
+			
+			<a href="../../html?page=1&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=text#contentReviews">Text View</a> &#124;
+			
+			
+			
+				
+					
+						1
+					
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=2&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">2</a>
+
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=3&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">3</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=4&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">4</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=5&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">5</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=6&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">6</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=7&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">7</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=8&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">8</a>
+
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=9&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">9</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=10&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">10</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=11&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">11</a>
+					
+				
+			
+			
+				<a href="../../html?page=2&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">&gt;&gt;</a>
+				<a href="../../html?page=12&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">&gt;&#124;</a>
+			
+		</div><!-- // fr blue_link_sm -->
+	</div>
+
+	<div class="content_abstract green">
+		
+		<div class="main_reviews_column_sort">
+			<span id="main_reviews_column_sort_label">Arrange By: </span>
+			
+				
+				
+					<a href="../../html?critic=columns&amp;sortby=fresh&amp;name_order=asc&amp;view=#contentReviews">Fresh</a>
+				
+			
+			&#124;
+			
+				
+				
+					<a href="../../html?critic=columns&amp;sortby=rotten&amp;name_order=asc&amp;view=#contentReviews">Rotten</a>
+				
+			
+			&#124;
+
+			
+				
+				
+					<a href="../../html?critic=columns&amp;sortby=name&amp;name_order=asc&amp;view=#contentReviews">Name</a>
+				
+			
+			&#124;
+			
+				
+				
+					<a href="../../html?critic=columns&amp;sortby=source&amp;name_order=asc&amp;view=#contentReviews">Source</a>
+				
+			
+			&#124;
+			
+				
+					<span class="selected">Date</span>
+				
+				
+			
+		</div><!-- // .main_reviews_column_sort -->
+		
+	</div><!-- // .content_abstract green -->
+
+	<div id="Content_Reviews" class="content_abstract">
+		<div class="lightblue">
+			<div class="content_abstract_cornerContainer">
+				<div class="content_abstract_corner1">&nbsp;</div>
+				<div class="content_abstract_corner2">&nbsp;</div>
+			</div>
+			<div class="content_abstract_content">
+				<div class="content_abstract_content2">
+
+			
+				
+												
+					<div class="movie_reviews_column">
+												
+			
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.standard.net.au/blogs/movie-reviews/review-toy-story-3/1900208.aspx" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												The Toy Story movies have always been impossible not to love thanks to their mixture of heart, humour and action, but this last goodbye is the best yet.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.standard.net.au/blogs/movie-reviews/review-toy-story-3/1900208.aspx"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: The Standard" border="0" alt="Source: The Standard"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1924206"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 5 Comments</a>
+
+										</div>
+										<div class="date">Aug 18, 2010</div>
+									</div>
+
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13862/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Matt Neal"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13862/" >Matt Neal</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2362/" >The Standard</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.themercury.com.au/article/2010/07/02/156085_movie-reviews.html" title="4.5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+
+										
+											
+												Toy Story 3 is equal parts hilarious, touching, insightful and exciting and anyone who doesn't come out smiling probably isn't human.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.themercury.com.au/article/2010/07/02/156085_movie-reviews.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: The Mercury" border="0" alt="Source: The Mercury"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1920976"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 7 Comments</a>
+
+										</div>
+										<div class="date">Jul 29, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13845/" ><img src="http://content8.flixster.com/critic/22/2246_ori.jpg" width="38" height="38" alt="Tim Martain"  /></a>
+</div>
+
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13845/" >Tim Martain</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2357/" >The Mercury</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://mftm.blogspot.com/2010/06/toy-story-3-2010.html" title="4.5/5" target="_blank" rel="nofollow"  >
+
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												full review at Movies for the Masses
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://mftm.blogspot.com/2010/06/toy-story-3-2010.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Movies for the Masses" border="0" alt="Source: Movies for the Masses"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1920671"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 2 Comments</a>
+
+										</div>
+										<div class="date">Jul 29, 2010</div>
+									</div>
+								</div>
+
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12154/" ><img src="http://content9.flixster.com/critic/17/1795_ori.jpg" width="38" height="52" alt="Joseph Proimakis"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12154/" >Joseph Proimakis</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1754/" >Movies for the Masses</a>
+
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble topcritic">
+						<div class="top">
+						</div>
+						<div class="container">
+
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://thepassionatemoviegoer.blogspot.com/2010/07/perfectimperfect.html"  target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												'Toy Story 3': Alternately affecting, hilarious and heartbreaking and the most original prison-escape movie ever made
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://thepassionatemoviegoer.blogspot.com/2010/07/perfectimperfect.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Passionate Moviegoer" border="0" alt="Source: Passionate Moviegoer"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1920476"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 9 Comments</a>
+
+										</div>
+
+										<div class="date">Jul 27, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-139/" ><img src="http://content6.flixster.com/critic/15/1596_ori.gif" width="37" height="52" alt="Joe Baltake"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-139/" >Joe Baltake</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1780/" >Passionate Moviegoer</a>
+</div>
+									
+										<div class="topcritic">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/tomato/ico_topcritic_star.png"  border="0" alt="Top Critic Icon"/>Top Critic</div>
+									
+								</div>
+							</div>
+						</div>
+
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.bfi.org.uk/sightandsound/review/5549"  target="_blank" rel="nofollow"  >
+
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												Bonnie is a touching tribute to the unbridled childhood imagination -- quite clearly, the kind of child who grows up to be a Pixar animator.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.bfi.org.uk/sightandsound/review/5549"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Sight and Sound" border="0" alt="Source: Sight and Sound"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1920361"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 3 Comments</a>
+
+										</div>
+										<div class="date">Jul 27, 2010</div>
+									</div>
+								</div>
+
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-609/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Jonathan Romney"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-609/" >Jonathan Romney</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-805/" >Sight and Sound</a>
+
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://clothesonfilm.com/film-review-toy-story-3/13872/"  target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												The best film Pixar have ever made.
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://clothesonfilm.com/film-review-toy-story-3/13872/"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Clothes on Film" border="0" alt="Source: Clothes on Film"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919927"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 18 Comments</a>
+
+										</div>
+
+										<div class="date">Jul 22, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13043/" ><img src="http://content6.flixster.com/critic/18/1808_ori.gif" width="38" height="42" alt="Chris Laverty"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13043/" >Chris Laverty</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2235/" >Clothes on Film</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.littlewhitelies.co.uk/theatrical-reviews/toy-story-3/" title="4/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+
+									<p>
+										
+											
+												By [Pixar's] high standards this isn’t the best, but by anyone else’s, it’s close to perfection.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.littlewhitelies.co.uk/theatrical-reviews/toy-story-3/"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Little White Lies" border="0" alt="Source: Little White Lies"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919925"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 4 Comments</a>
+
+										</div>
+										<div class="date">Jul 22, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12431/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Ailsa Caine"  /></a>
+</div>
+
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12431/" >Ailsa Caine</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1822/" >Little White Lies</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.thisislondon.co.uk/film/review-23856767-toy-story-3-is-one-for-big-babies-everywhere.do" title="5/5" target="_blank" rel="nofollow"  >
+
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												I tried stuffing paper into my nose and into my mouth and in my ears to stop the flow. It was hopeless. Toy Story 3 is not only a masterpiece but is the most heart-rending film I have ever seen.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.thisislondon.co.uk/film/review-23856767-toy-story-3-is-one-for-big-babies-everywhere.do"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: This is London" border="0" alt="Source: This is London"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919765"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 2 Comments</a>
+
+										</div>
+										<div class="date">Jul 22, 2010</div>
+									</div>
+								</div>
+
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13393/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Andrew O&#039;Hagan"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13393/" >Andrew O'Hagan</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-446/" >This is London</a>
+
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.newsoftheworld.co.uk/entertainment/Childrens/879229/Toy-Story-3-U.html" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												The perfect film does not, and cannot, exist. But if it did, it would probably look a lot like this.
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.newsoftheworld.co.uk/entertainment/Childrens/879229/Toy-Story-3-U.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: News of the World" border="0" alt="Source: News of the World"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919753"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 4 Comments</a>
+
+										</div>
+
+										<div class="date">Jul 22, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13264/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Robbie Collin"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13264/" >Robbie Collin</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2154/" >News of the World</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.sfx.co.uk/2010/07/20/film-review-toy-story-3/" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+
+									<p>
+										
+											
+												Even the hardest of hearts will have melted by the time the lights come back up.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.sfx.co.uk/2010/07/20/film-review-toy-story-3/"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: SFX Magazine" border="0" alt="Source: SFX Magazine"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919481"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 4 Comments</a>
+
+										</div>
+										<div class="date">Jul 20, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12415/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="James White"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12415/" >James White</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2152/" >SFX Magazine</a>
+</div>
+									
+								</div>
+							</div>
+
+						</div>
+					</div>
+					
+					
+				</div>
+				<div class="movie_reviews_column movie_reviews_column_right">
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://news.scotsman.com/movies/Film-review-Toy-Story-3.6423210.jp" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												It's a sign of Pixar's ongoing brilliance that even when there would appear to be no real need for another Toy Story sequel the studio delivers one that feels utterly essential.
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://news.scotsman.com/movies/Film-review-Toy-Story-3.6423210.jp"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Scotsman" border="0" alt="Source: Scotsman"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919384"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 2 Comments</a>
+
+										</div>
+
+										<div class="date">Jul 19, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-5708/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Alistair Harkness"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-5708/" >Alistair Harkness</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1211/" >Scotsman</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.liverpoolecho.co.uk/liverpool-entertainment/echo-reviews/2010/07/16/film-review-toy-story-3-100252-26863843/"  target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+
+									<p>
+										
+											
+												Toy Story 3 surpasses the 1995 original and its 1999 sequel for thrills, spills and laughs, delivering the most satisfying journey of the trilogy.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.liverpoolecho.co.uk/liverpool-entertainment/echo-reviews/2010/07/16/film-review-toy-story-3-100252-26863843/"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Liverpool Echo" border="0" alt="Source: Liverpool Echo"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919049"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 4 Comments</a>
+
+										</div>
+										<div class="date">Jul 16, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13633/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Catherine Jones"  /></a>
+</div>
+
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13633/" >Catherine Jones</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2318/" >Liverpool Echo</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.guardian.co.uk/film/2010/jul/15/toy-story-3-review" title="4/5" target="_blank" rel="nofollow"  >
+
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												It's an effortlessly superior family movie.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.guardian.co.uk/film/2010/jul/15/toy-story-3-review"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Guardian [UK]" border="0" alt="Source: Guardian [UK]"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1919001"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 2 Comments</a>
+
+										</div>
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-408/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Peter Bradshaw"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-408/" >Peter Bradshaw</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-205/" >Guardian [UK]</a>
+
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://blogs.mirror.co.uk/the-ticket/2010/07/toy-story-3-film-review-the-to.html" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												I doubt we'll see better all year.
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://blogs.mirror.co.uk/the-ticket/2010/07/toy-story-3-film-review-the-to.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Daily Mirror [UK]" border="0" alt="Source: Daily Mirror [UK]"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918993"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 5 Comments</a>
+
+										</div>
+
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-11683/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="David Edwards"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-11683/" >David Edwards</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1387/" >Daily Mirror [UK]</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.thesun.co.uk/sol/homepage/showbiz/film/3056447/Alex-Zane-Toy-Story-3-is-lightyears-ahead.html" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+
+									<p>
+										
+											
+												This is an almost flawless example of a movie that will keep pretty much any person of any age enthralled and entertained.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.thesun.co.uk/sol/homepage/showbiz/film/3056447/Alex-Zane-Toy-Story-3-is-lightyears-ahead.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Sun Online" border="0" alt="Source: Sun Online"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918987"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 4 Comments</a>
+
+										</div>
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13596/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Alex Zane"  /></a>
+</div>
+
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13596/" >Alex Zane</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1759/" >Sun Online</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.telegraph.co.uk/culture/film/filmreviews/7892217/Toy-Story-3-review.html" title="4/5" target="_blank" rel="nofollow"  >
+
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												It’s a film that moves as much as it entertains, that will make adults cry as much as -- perhaps even more than -- younger children.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.telegraph.co.uk/culture/film/filmreviews/7892217/Toy-Story-3-review.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Daily Telegraph" border="0" alt="Source: Daily Telegraph"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918842"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 5 Comments</a>
+
+										</div>
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12413/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Sukhdev Sandhu"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12413/" >Sukhdev Sandhu</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-921/" >Daily Telegraph</a>
+
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.film4.com/reviews/2010/toy-story-3-3d" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												A film to enrapture children, and make adults weep. Plastic cowboy hats off to Pixar once again.
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.film4.com/reviews/2010/toy-story-3-3d"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Film4" border="0" alt="Source: Film4"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918831"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 1 Comment</a>
+
+										</div>
+
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-6609/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Daniel Etherington"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-6609/" >Daniel Etherington</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1396/" >Film4</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.timeout.com/film/reviews/87255/toy-story-3.html" title="4/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+
+									<p>
+										
+											
+												The ‘Toy Story’ films are deservedly seen as the gold standard for computer-generated animation...
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.timeout.com/film/reviews/87255/toy-story-3.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Time Out" border="0" alt="Source: Time Out"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918820"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 2 Comments</a>
+
+										</div>
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-9679/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Ben Walters"  /></a>
+</div>
+
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-9679/" >Ben Walters</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1651/" >Time Out</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.birminghampost.net/life-leisure-birmingham-guide/birmingham-culture/film-news/2010/07/14/movie-reviews-inception-and-toy-story-3-65233-26852696/" title="5/5" target="_blank" rel="nofollow"  >
+
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												Toy Story 3 is clever, inventive and deeply moving, a fabulous film which can be enjoyed by all ages -- and you can’t say that about many movies.
+											
+											
+											
+										
+									</p>
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.birminghampost.net/life-leisure-birmingham-guide/birmingham-culture/film-news/2010/07/14/movie-reviews-inception-and-toy-story-3-65233-26852696/"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Birmingham Post" border="0" alt="Source: Birmingham Post"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918819"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 5 Comments</a>
+
+										</div>
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13634/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Roz Laws"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-13634/" >Roz Laws</a>
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-2317/" >Birmingham Post</a>
+
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+
+
+
+ 
+
+	
+		
+		
+	
+	
+	
+
+
+
+
+
+
+
+
+			
+			
+				
+												
+				
+					<div class="quoteBubble ">
+						<div class="top">
+						</div>
+						<div class="container">
+
+							<div class="middle">
+								<div class="content">
+									<div class="rating">
+										
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="http://www.ft.com/cms/s/2/e41da67c-8f5b-11df-ac5d-00144feab49a.html" title="5/5" target="_blank" rel="nofollow"  >
+											
+												
+													<span class="iconset iconset_rt_smd 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_smd hide"></span>
+												
+												
+											
+										</a>
+	
+	
+
+
+									</div>
+									<p>
+										
+											
+												If there were a Nobel Prize for Digital Animation it would have been won almost every year by Pixar.
+											
+											
+											
+										
+									</p>
+
+									<div class="toolsContainer">
+										<div class="tools">
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+
+
+
+
+	
+	
+		<a href="http://www.ft.com/cms/s/2/e41da67c-8f5b-11df-ac5d-00144feab49a.html"  target="_blank" rel="nofollow"  >Full Review
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/offsite.gif"  width="10" height="8" title="Source: Financial Times" border="0" alt="Source: Financial Times"/></a>
+	
+	
+
+ |
+											
+											
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/toy_story_3/comments.php?reviewid=1918810"    >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<img src="http://images.rottentomatoescdn.com/images/icons/ico_commentBubble_sm.png"  class="icon" border="0" alt="comment"/> 5 Comments</a>
+
+										</div>
+
+										<div class="date">Jul 15, 2010</div>
+									</div>
+								</div>
+							</div>
+							<div class="bottom">
+								
+								<div class="criticImage">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12627/" ><img src="http://images.rottentomatoescdn.com/images/defaults/poster_default.gif" width="38" height="38" alt="Nigel Andrews"  /></a>
+</div>
+								<div class="criticContent">
+									<div class="author">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+   
+
+<a href="/author/author-12627/" >Nigel Andrews</a>
+
+</div>
+									<div class="source">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/source-1882/" >Financial Times</a>
+</div>
+									
+								</div>
+							</div>
+						</div>
+					</div>
+					
+					
+											
+			
+											
+				
+
+			
+				
+												
+					</div>
+												
+			
+
+				</div>
+
+			</div>
+			<div class="content_abstract_cornerContainer">
+				<div class="content_abstract_corner3">	&nbsp;
+				</div>
+				<div class="content_abstract_corner4">	&nbsp;
+				</div>
+			</div>
+		</div>
+
+	</div>
+	<div class="main_reviews_column_nav">
+		<div class="fl">1 - 20 of 237 <span style="font-weight:normal;">(sorted by date)</span></div>
+		<div class="fr blue_link_sm" style="width:300px; text-align:right;">
+			
+			<a href="../../html?page=1&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=text#contentReviews">Text View</a> &#124;
+			
+			
+			
+				
+					
+						1
+					
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=2&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">2</a>
+
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=3&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">3</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=4&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">4</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=5&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">5</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=6&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">6</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=7&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">7</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=8&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">8</a>
+
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=9&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">9</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=10&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">10</a>
+					
+				
+			
+				
+					
+					
+						<a href="../../html?page=11&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">11</a>
+					
+				
+			
+			
+				<a href="../../html?page=2&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">&gt;&gt;</a>
+				<a href="../../html?page=12&amp;critic=columns&amp;sortby=&amp;name_order=&amp;view=#contentReviews">&gt;&#124;</a>
+			
+		</div><!-- // fr blue_link_sm -->
+	</div>
+
+
+
+										
+									
+	
+								</div>	<!-- // #Reviews_Container_Content .content_abstract_tertiarynav_content -->
+							</div>	<!-- // #ReviewsBlock -->
+						</div>
+						   
+						
+	</div>
+</div>
+					
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div class="content " id="contentNews">
+	
+		
+			<div class="content_header_wrapper">
+
+				<div class="content_header">
+					<div class="content_inner">
+						
+						
+							
+								
+									<h3>LATEST NEWS FOR TOY STORY 3</h3>
+								
+								
+							
+						
+						
+						
+						
+							<div class="header_text"><a href="/m/toy_story_3/news.php">all</a></div>
+						
+					</div>
+				</div>
+			</div>
+		
+		
+	
+	<div class="content_body clearfix ">
+
+		
+							
+								<p class="clearfix">
+									<strong>September 1, 2010:</strong>
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1920616/2010_summer_box_office_hits_and_misses/" title="Source: Moviefone" target="_blank"  class="icon">2010 Summer Box Office: Hits and Misses</a>
+	
+	
+
+<br />
+									The summer of 2010 is on the books, and it's time to look back at the numbers and sort out the winners -- as well as the losers. 
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1920616/2010_summer_box_office_hits_and_misses/" title="Source: Moviefone" target="_blank"  class="icon"> More...</a>
+	
+	
+
+<br />
+
+								</p>
+							
+								<p class="clearfix">
+									<strong>August 16, 2010:</strong>
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1920475/toy_story_3_takes_all-time_animated_box_office_crown/" title="Source: Collider.com" target="_blank"  class="icon"><i>Toy Story 3</i> Takes All-Time Animated Box Office Crown</a>
+	
+	
+
+<br />
+									Congratulations, Pixar: After two months in release, "Toy Story 3" has become the highest-grossing animated film of all time. 
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1920475/toy_story_3_takes_all-time_animated_box_office_crown/" title="Source: Collider.com" target="_blank"  class="icon"> More...</a>
+
+	
+	
+
+<br />
+								</p>
+							
+								<p class="clearfix">
+									<strong>July 7, 2010:</strong>
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1912259/picking_the_best_of_2010_so_far/" title="Source: Los Angeles Times" target="_blank"  class="icon">Picking the Best of 2010 (So Far)</a>
+	
+	
+
+<br />
+									According to the Los Angeles Times, "Toy Story 3" and "Red Dead Redemption" are, as of right now, the two biggest entertainment successes of 2010. What's your vote? 
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1912259/picking_the_best_of_2010_so_far/" title="Source: Los Angeles Times" target="_blank"  class="icon"> More...</a>
+
+	
+	
+
+<br />
+								</p>
+							
+								<p class="clearfix">
+									<strong>June 22, 2010:</strong>
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1890009/is_hollywoods_future_in_family_films/" title="Source: Los Angeles Times" target="_blank"  class="icon">Is Hollywood's Future in Family Films?</a>
+	
+	
+
+<br />
+									Looking at the mostly dismal box office numbers for summer 2010, the L.A. Times can't help but wonder: Is a multiplex full of family films the future of moviegoing? 
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1890009/is_hollywoods_future_in_family_films/" title="Source: Los Angeles Times" target="_blank"  class="icon"> More...</a>
+
+	
+	
+
+<br />
+								</p>
+							
+								<p class="clearfix">
+									<strong>June 21, 2010:</strong>
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1889897/box_office_guru_wrapup_toy_story_3_soars_to_no_1/" title="Source: Rotten Tomatoes"   class="icon">Box Office Guru Wrapup: <em>Toy Story 3</em> Soars to No. 1</a>
+	
+	
+
+<br />
+
+									This weekend, Pixar once again showed off its box office muscle with the record opening for Toy Story 3 which delivered the best debut in company history. On the opposite end of the spectrum, the... 
+									
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		<a href="/m/toy_story_3/news/1889897/box_office_guru_wrapup_toy_story_3_soars_to_no_1/" title="Source: Rotten Tomatoes"   class="icon"> More...</a>
+	
+	
+
+<br />
+								</p>
+							
+						
+	</div>
+</div>
+				</div>
+				
+				<div class="col_300 col_right sidebar">
+				    
+										
+					
+					
+					
+	
+						
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div class="content " id="homepage_movies_sidebar">
+	
+		
+			<div class="content_header_wrapper">
+				<div class="content_header">
+					<div class="content_inner">
+						
+						
+							
+								
+									<h3>MORE MOVIES</h3>
+								
+								
+							
+						
+						
+							<a class="widget_access_icon" href="http://www.rottentomatoes.com/help_desk/syndication_rss.php"  title="Get RT RSS Feeds for Movies." ><span class="iconset iconset_rt_sm rss_sm hide"><span>Close</span></span></a>
+						
+						
+						
+							<div class="header_text"><a href="/movie/">See All</a></div>
+						
+					</div>
+
+				</div>
+			</div>
+		
+		
+	
+	<div class="content_body clearfix ">
+		
+								<table id="boxofficeTbl" class="abstractViewTbl noHead">
+									<caption><a href="/movie/box_office.php">US Top Box Office</a></caption>
+									<thead>
+										<tr>
+											<th class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink"><span>Tomatometer Percentage</span></th>
+
+											<th class="boxofficeTbl_movieCol"><span>Movie</span></th>
+											<th class="boxofficeTbl_grossCol lastCol noLink currency"><span>Gross</span></th>
+										</tr>
+									</thead>
+									<tfoot>
+										<tr>
+											<td colspan="3"><p class="more"><a href="/movie/in_theaters.php">In Theaters</a> &#124; <a href="/movie/box_office.php">More Box Office&hellip;</a></p></td>
+
+										</tr>
+									</tfoot>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/american/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Fresh" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+62%</span>
+
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+62%</span>
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/american/"  class="" >The American</a>
+
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/american/"  class="" >
+							    				
+							    					
+							    						&#36;13.2M
+							    					
+							    					
+							    				
+							    			</a>
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/machete/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Fresh" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+72%</span>
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+72%</span>
+
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/machete/"  class="" >Machete</a>
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/machete/"  class="" >
+							    				
+							    					
+							    						&#36;11.4M
+							    					
+							    					
+							    				
+							    			</a>
+
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/takers/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Rotten" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+	
+	
+
+splat_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+30%</span>
+
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+30%</span>
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/takers/"  class="" >Takers</a>
+
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/takers/"  class="" >
+							    				
+							    					
+							    						&#36;10.9M
+							    					
+							    					
+							    				
+							    			</a>
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/last_exorcism/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Fresh" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+72%</span>
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+72%</span>
+
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/last_exorcism/"  class="" >The Last Exorcism</a>
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/last_exorcism/"  class="" >
+							    				
+							    					
+							    						&#36;7.3M
+							    					
+							    					
+							    				
+							    			</a>
+
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/10012042-going_the_distance/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Rotten" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+	
+	
+
+splat_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+51%</span>
+
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+51%</span>
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/10012042-going_the_distance/"  class="" >Going the Distance</a>
+
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/10012042-going_the_distance/"  class="" >
+							    				
+							    					
+							    						&#36;6.9M
+							    					
+							    					
+							    				
+							    			</a>
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/the_expendables/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Rotten" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+	
+	
+
+splat_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+40%</span>
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+40%</span>
+
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/the_expendables/"  class="" >The Expendables</a>
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/the_expendables/"  class="" >
+							    				
+							    					
+							    						&#36;6.6M
+							    					
+							    					
+							    				
+							    			</a>
+
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/other_guys/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Fresh" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+76%</span>
+
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+76%</span>
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/other_guys/"  class="" >The Other Guys</a>
+
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/other_guys/"  class="" >
+							    				
+							    					
+							    						&#36;5.3M
+							    					
+							    					
+							    				
+							    			</a>
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/eat_pray_love/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Rotten" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+	
+		
+	
+	
+
+splat_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+37%</span>
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+37%</span>
+
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/eat_pray_love/"  class="" >Eat Pray Love</a>
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/eat_pray_love/"  class="" >
+							    				
+							    					
+							    						&#36;4.8M
+							    					
+							    					
+							    				
+							    			</a>
+
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/inception/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Fresh" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+87%</span>
+
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+87%</span>
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/inception/"  class="" >Inception</a>
+
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/inception/"  class="" >
+							    				
+							    					
+							    						&#36;4.6M
+							    					
+							    					
+							    				
+							    			</a>
+										</td>
+									</tr>
+									
+									
+									<tr>
+										<td class="boxofficeTbl_tomatometerCol tomatometerCol firstCol noLink">
+
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/nanny_mcphee_returns/"  class="icon" ><span class="tmeter_display tmeter_display_sm">
+		
+			
+				
+				<span title="Fresh" class="iconset iconset_rt_sm 
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+	
+	
+	
+
+fresh_sm hide">
+					<span>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+77%</span>
+				</span>
+				<span class="label">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+77%</span>
+
+			
+			
+				
+	</span></a>
+	
+
+
+										</td>
+										<td class="boxofficeTbl_movieCol">
+											
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/nanny_mcphee_returns/"  class="" >Nanny McPhee Returns</a>
+										</td>
+										<td class="boxofficeTbl_grossCol lastCol noLink currency">
+							    			
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<a href="/m/nanny_mcphee_returns/"  class="" >
+							    				
+							    					
+							    						&#36;3.5M
+							    					
+							    					
+							    				
+							    			</a>
+
+										</td>
+									</tr>
+									
+								</table>
+							
+	</div>
+</div>
+					
+					
+					
+	                
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="halfpage_ad">
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+ 
+ 
+ 
+
+<!-- Begin DART Tag-->
+<script type="text/javascript">
+if(typeof(tile) == "undefined"){var tile = 1} else {tile++}
+if(typeof(ord) == "undefined" || ord == null){var ord = Math.random()*10000000000000000;}
+if(typeof(test) == "undefined" || test == null){
+    var test="0";
+    var testParam = getURLParam("test");
+    if(testParam != null && testParam.length > 0 && !isNaN(testParam)){test=testParam;}
+}
+document.write('<scr'+'ipt src="http://ad.doubleclick.net/adj/rt.movies/movielandingpage;pos=top;tile='+tile+';sz=300x250,300x600;dcopt=;genre=animation,science-fiction-fantasy,comedy,kids-family;url='+encodeURI(location.pathname)+';test=' + test + ';ord='+ord+';?"></scr'+'ipt>');
+</script>
+<noscript><a href="http://ad.doubleclick.net/jump/rt.movies/movielandingpage;pos=top;tile=1;sz=300x250,300x600;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" target="_blank"><img src="http://ad.doubleclick.net/ad/rt.movies/movielandingpage;pos=top;tile=1;sz=300x250,300x600;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" border="0" alt=""></a></noscript>
+
+<!-- End DART Tag--> 
+</div>
+                    <style type="text/css">
+                        /*PC 8/26 - hack alert - doing this temporarily since there's an old, broken css rule that is causing medrecs to display funny.
+                                    see if we can remove the css or the offending line from file/inc_beta/generated/css/mob_v2.css */
+                        #halfpage_ad {margin:0 0 5px;padding:0;width:300px;}
+                    </style>
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+		
+	
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+
+
+
+
+	
+		
+		<div id="deferred0" class="deferred" file="/shared/whatsHotOnRT.jsp"></div>
+	
+	
+
+
+
+
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+		<div id="deferred1" class="deferred" file="/shared/otherNews.jsp"></div>
+	
+	
+
+
+
+
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="sidebillboard_ad">
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+ 
+ 
+ 
+
+<!-- Begin DART Tag-->
+<script type="text/javascript">
+if(typeof(tile) == "undefined"){var tile = 1} else {tile++}
+if(typeof(ord) == "undefined" || ord == null){var ord = Math.random()*10000000000000000;}
+if(typeof(test) == "undefined" || test == null){
+    var test="0";
+    var testParam = getURLParam("test");
+    if(testParam != null && testParam.length > 0 && !isNaN(testParam)){test=testParam;}
+}
+document.write('<scr'+'ipt src="http://ad.doubleclick.net/adj/rt.movies/movielandingpage;pos=bottom;tile='+tile+';sz=300x250,300x600;dcopt=;genre=animation,science-fiction-fantasy,comedy,kids-family;url='+encodeURI(location.pathname)+';test=' + test + ';ord='+ord+';?"></scr'+'ipt>');
+</script>
+<noscript><a href="http://ad.doubleclick.net/jump/rt.movies/movielandingpage;pos=bottom;tile=1;sz=300x250,300x600;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" target="_blank"><img src="http://ad.doubleclick.net/ad/rt.movies/movielandingpage;pos=bottom;tile=1;sz=300x250,300x600;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" border="0" alt=""></a></noscript>
+
+<!-- End DART Tag--> 
+</div>
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+					
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+	
+		
+		<div id="deferred2" class="deferred" file="/shared/freshLinks.jsp"></div>
+	
+	
+
+
+
+
+	
+					
+				</div>
+			</div>
+	            		</div>
+	                
+	            
+			</div>
+		</div>
+	</div>
+
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<script type="text/javascript">
+/* <![CDATA[ */
+
+			$(document).ready(function() {
+			    $("#homepage_dvd_sidebar div.content_body a").tooltip({
+			        delay: 500, showURL: false, fixPNG: true, opacity: 1, showBody: " - ",  extraClass: "bubbleFixedTop", top: -126, left: -60  
+			    });
+			});
+		
+/* ]]> */
+</script>
+
+		
+			
+			
+				
+			
+		
+		
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="main_body_footer"></div>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<div id="sleaderboard_ad">
+	
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 
+ 
+ 
+ 
+
+<!-- Begin DART Tag-->
+<script type="text/javascript">
+if(typeof(tile) == "undefined"){var tile = 1} else {tile++}
+if(typeof(ord) == "undefined" || ord == null){var ord = Math.random()*10000000000000000;}
+if(typeof(test) == "undefined" || test == null){
+    var test="0";
+    var testParam = getURLParam("test");
+    if(testParam != null && testParam.length > 0 && !isNaN(testParam)){test=testParam;}
+}
+document.write('<scr'+'ipt src="http://ad.doubleclick.net/adj/rt.movies/movielandingpage;pos=bottom;tile='+tile+';sz=984x250,728x90;dcopt=;genre=animation,science-fiction-fantasy,comedy,kids-family;url='+encodeURI(location.pathname)+';test=' + test + ';ord='+ord+';?"></scr'+'ipt>');
+</script>
+<noscript><a href="http://ad.doubleclick.net/jump/rt.movies/movielandingpage;pos=bottom;tile=1;sz=984x250,728x90;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" target="_blank"><img src="http://ad.doubleclick.net/ad/rt.movies/movielandingpage;pos=bottom;tile=1;sz=984x250,728x90;genre=animation,science-fiction-fantasy,comedy,kids-family;url=http%3A%2F%2Fwww.rottentomatoes.com%2Fm%2Ftoy_story_3%2F;ord=1284126877036;?" border="0" alt=""></a></noscript>
+<!-- End DART Tag-->
+</div>
+
+
+
+<!--[if lte IE 6]>
+<script type="text/javascript">
+	$.getScript(
+		"http://images.rottentomatoescdn.com/v/20100909c/scripts?f=/files/inc_beta/js/jquery/plugins/jquery.pngFix.js",
+		function() { 
+			$(document).pngFix();
+		}
+	);
+</script>
+<![endif]-->
+
+<!--[if gte IE 7]>
+<script type="text/javascript">
+	/* <![CDATA[ */
+	$(document).ready(function(){ 
+		$("hr").before("<div class='hr'>").after("</div>").attr("style","display: none");
+	});
+	/* <![CDATA[ */
+</script>
+<![endif]-->
+
+<div id="footer_nav_container2">
+	<div id="footer_nav_container">
+	    <div id="footer_left"></div>
+	    <div id="footer_right"></div>
+	    <div id="footer_nav">
+	        <a href="/help_desk/learn_more.php">About</a>|
+	        <a href="/help_desk/sitemap.php">Site Map</a>|
+	        <a href="/help_desk/">Help</a>|
+	        <a href="http://www.rottentomatoes.com/help_desk/syndication.php">RT To Go</a>|
+	        <a href="/help_desk/contact.php">Contact Us</a>|
+	        <a href="/help_desk/press.php">Press</a>|
+	        <a href="/help_desk/critics.php">Critics Submission</a>|
+	        <a href="/help_desk/webmaster.php">Linking to RT</a>|
+	        <a href="/help_desk/licensing.php">Licensing</a>|
+	        <a href="http://www.rottentomatoes.com/features/stats/index.php">Movie List</a>|
+	        <a href="http://www.rottentomatoes.com/features/stats/index-celebs.php">Celebs List</a>|
+	        <a href="/features/newsletter/">Newsletter</a>
+
+	    </div>
+	    
+	</div>
+	
+</div>
+
+<div id="footer_container">
+	<div class="footer_ign">
+		<div class="footer_ign_text">
+			<div class="footer_ign_break clearfix">
+				<a href="http://www.flixster.com/misc/copyrightprivacyterms?tab=copyright" target="_blank" style="margin-right: 0;">Copyright</a> &copy; 2010 Flixster, Inc. All rights reserved. | 
+				<a title="Terms of Service" href="http://www.flixster.com/misc/copyrightprivacyterms?tab=terms" target="_blank">Terms of Service</a> | 
+				<a title="Privacy Policy" href="http://www.flixster.com/misc/copyrightprivacyterms?tab=privacy" target="_blank">Privacy Policy</a><br />
+
+			</div>
+			<div class="footer_ign_break">
+				Certain product data &copy; 1995-present Muze, Inc. For personal use only. All rights reserved.
+			</div>
+		</div>
+	</div>
+</div>
+
+<div id="debug" style="display:none;text-align:center;">
+	/movies/movie.old.jsp -
+	web168.flixster.com
+	(ie)
+
+</div>
+
+
+<script type="text/javascript"> 
+//<![CDATA[
+<!-- Begin comScore Tag -->
+if (typeof COMSCORE == "undefined") { var COMSCORE={}}COMSCORE.beacon=function(d){if(!d){return}var a=1.6,e=document,g=e.location,c=function(h){if(h==null){return""}return(encodeURIComponent||escape)(h)},f=[(g.protocol=="https:"?"https://sb":"http://b"),".scorecardresearch.com/b?","c1=",c(d.c1),"&c2=",c(d.c2),"&rn=",Math.random(),"&c7=",c(g.href),"&c3=",c(d.c3),"&c4=",c(d.c4),"&c5=",c(d.c5),"&c6=",c(d.c6),"&c15=",c(d.c15),"&c16=",c(d.c16),"&c8=",c(e.title),"&c9=",c(e.referrer),"&cv=",a].join("");f=f.length>1500?f.substr(0,1495)+"&ct=1":f;var b=new Image();b.onload=function(){};b.src=f;return f };
+COMSCORE.beacon({ c1:2, c2:"3000068", c3:"", c4:"http://www.rottentomatoes.com", c5:"", c6:"", c15:"" });
+<!-- End comScore Tag -->
+//]]-->
+</script>
+
+
+<!-- START Nielsen Online SiteCensus V6.0 -->
+<!-- COPYRIGHT 2010 Nielsen Online -->
+<script type="text/javascript" src="//secure-us.imrworldwide.com/v60.js"></script>
+<script type="text/javascript">
+ var pvar = { cid: "us-203323h", content: "0", server: "secure-us" };
+ var trac = nol_t(pvar);
+ trac.record().post();
+</script>
+<noscript><div> <img src="//secure-us.imrworldwide.com/cgi-bin/m?ci=us-203323h&amp;cg=0&amp;cc=1&amp;ts=noscript" width="1" height="1" alt="" /> </div></noscript>
+<!-- END Nielsen Online SiteCensus V6.0 --> 
+
+
+<script type="text/javascript">
+  var _gaq = _gaq || [];
+  _gaq.push(['_setAccount', 'UA-2265251-1']);
+  _gaq.push(['_setDomainName', 'www.rottentomatoes.com']);
+  _gaq.push(['_setAllowHash', false]);
+  
+  
+  
+  _gaq.push(['_trackPageview', '/movie/object/']);
+  
+  
+
+  (function() {
+    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
+    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
+    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
+  })();
+
+</script>
+
+
+
+
+
+<script type="text/javascript">_qoptions={ qacct:"p-0fuRlG_jy3lfA" };</script> 
+<script type="text/javascript" src=http://edge.quantserve.com/quant.js> </script> 
+<noscript><a href="http://www.quantcast.com/p-0fuRlG_jy3lfA" target="_blank"><img src="http://pixel.quantserve.com/pixel/p-0fuRlG_jy3lfA.gif" style="display: none" border="0" height="1" width="1" alt="Quantcast"/></a></noscript>
+
+
+
+<script type="text/javascript">
+document.write("<img src='/tracking/pixel' width='1' height='1' />");
+</script>
+
+<script type="text/javascript" src="http://tags.crwdcntrl.net/c/229/cc.js"></script> 
+<script type="text/javascript">LOTCC.bcp();</script></body> 
+
+
+
+
+
+
+
+
+<div id="fb-root"></div>
+<script src="http://connect.facebook.net/en_US/all.js"></script>
+
+
+
+<script>
+	FB.XFBML.parse();
+</script>
+
+</body>
+
+	</html>
\ No newline at end of file
Index: tika-core/pom.xml
===================================================================
--- tika-core/pom.xml	(revision 1556678)
+++ tika-core/pom.xml	(working copy)
@@ -55,14 +55,33 @@
       <artifactId>bndlib</artifactId>
       <scope>provided</scope>
     </dependency>
+    
+    <!-- Sesame dependencies -->
+    <dependency>
+      <groupId>org.openrdf.sesame</groupId>
+      <artifactId>sesame-rio-turtle</artifactId>
+      <version>${sesame.version}</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.openrdf.sesame</groupId>
+      <artifactId>sesame-rio-ntriples</artifactId>
+      <version>${sesame.version}</version>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.openrdf.sesame</groupId>
+      <artifactId>sesame-rio-n3</artifactId>
+      <version>${sesame.version}</version>
+      <scope>runtime</scope>
+    </dependency>
 
     <!-- Test dependencies -->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>
-      <version>4.11</version>
-    </dependency>
+      </dependency>
   </dependencies>
 
   <build>
@@ -145,20 +164,20 @@
 
   <description>This is the core Apache Tika™ toolkit library from which all other modules inherit functionality.  It also includes the core facades for the Tika API. </description>
   <organization>
-  	<name>The Apache Software Foundation</name>
-  	<url>http://www.apache.org</url>
+    <name>The Apache Software Foundation</name>
+    <url>http://www.apache.org</url>
   </organization>
   <scm>
-  	<url>http://svn.apache.org/viewvc/tika/trunk/core</url>
-  	<connection>scm:svn:http://svn.apache.org/repos/asf/tika/trunk/core</connection>
-  	<developerConnection>scm:svn:https://svn.apache.org/repos/asf/tika/trunk/core</developerConnection>
+    <url>http://svn.apache.org/viewvc/tika/trunk/core</url>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/tika/trunk/core</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/tika/trunk/core</developerConnection>
   </scm>
   <issueManagement>
-  	<system>JIRA</system>
-  	<url>https://issues.apache.org/jira/browse/TIKA</url>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/TIKA</url>
   </issueManagement>
   <ciManagement>
-  	<system>Jenkins</system>
-  	<url>https://builds.apache.org/job/Tika-trunk/</url>
+    <system>Jenkins</system>
+    <url>https://builds.apache.org/job/Tika-trunk/</url>
   </ciManagement>
 </project>
Index: tika-parent/pom.xml
===================================================================
--- tika-parent/pom.xml	(revision 1556678)
+++ tika-parent/pom.xml	(working copy)
@@ -252,6 +252,7 @@
     <maven.compile.source>1.6</maven.compile.source>
     <maven.compile.target>1.6</maven.compile.target>
     <project.reporting.outputEncoding>${project.build.sourceEncoding}</project.reporting.outputEncoding>
+    <sesame.version>2.7.5</sesame.version>
   </properties>
 
   <build>
