Merge branch 'master' into westmann/cleanup
diff --git a/asterix-doc/pom.xml b/asterix-doc/pom.xml
index c284d76..7555e48 100644
--- a/asterix-doc/pom.xml
+++ b/asterix-doc/pom.xml
@@ -33,42 +33,6 @@
 					</execution>
 				</executions>
 			</plugin>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-resources-plugin</artifactId>
-				<version>2.6</version>
-				<executions>
-					<execution>
-						<phase>package</phase>
-						<goals>
-							<goal>copy-resources</goal>
-						</goals>
-						<inherited>false</inherited>
-						<configuration>
-							<outputDirectory>${project.build.directory}/site/download</outputDirectory>
-							<resources>
-								<resource>
-									<directory>../asterix-examples/src/main/resources/</directory>
-									<includes>
-										<include>asterix-sdk-stable.js</include>
-									</includes>
-								</resource>
-								<resource>
-									<directory>../asterix-examples/target/</directory>
-									<includes>
-										<include>admaql101-demo.zip</include>
-										<include>tweetbook-demo.zip</include>
-									</includes>
-								</resource>
-							</resources>
-						</configuration>
-					</execution>
-				</executions>
-			</plugin>
-			<!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> 
-				<executions> <execution> <phase>package</phase> <goals> <goal>assembly</goal> 
-				</goals> <inherited>false</inherited> <configuration> <descriptor>src/assembly/assembly.xml</descriptor> 
-				</configuration> </execution> </executions> </plugin> -->
 		</plugins>
 	</build>
 </project>
diff --git a/asterix-doc/src/site/markdown/aql/js-sdk.md b/asterix-doc/src/site/markdown/aql/js-sdk.md
index 2283c11..18af77b 100644
--- a/asterix-doc/src/site/markdown/aql/js-sdk.md
+++ b/asterix-doc/src/site/markdown/aql/js-sdk.md
@@ -1,7 +1,7 @@
 # AsterixDB Javascript SDK #
 
 ## Obtaining and Including ##
-[Download](../download/asterix-sdk-stable.js) the javascript SDK and include it
+[Download](http://asterixdb.ics.uci.edu/download/bindings/asterix-sdk-stable.js) the javascript SDK and include it
 like any other javascript library by adding the following line in the
 appropriate HTML file:
 
@@ -11,10 +11,10 @@
 There are two interactive demos that are available for download. Both of the
 demos illustrate how the javascript API would be used in an application:
 
-* [Tweetbook Demo](../download/tweetbook-demo.zip): a contrived geo-spatial
+* [Tweetbook Demo](http://asterixdb.ics.uci.edu/download/demos/tweetbook-demo.zip): a contrived geo-spatial
   application dealing with artificial Tweets allowing spatial, temporal, and
   keyword-based filtering.
-* [ADM/AQL 101 Demo](../download/admaql101-demo.zip): an interactive version of
+* [ADM/AQL 101 Demo](http://asterixdb.ics.uci.edu/download/demos/admaql101-demo.zip): an interactive version of
   all of the examples that are provided in the following section.
 
 ## The javascript SDK: by example ##