/*
	jquery-loader.js
	loads jQuery only if it hasn't be loaded already
*/

if ( typeof jQuery === "undefined" ) {
	
	if ( typeof $ === "function" ) {
		throw "jQueryConflictException";
	}
	
	// Simple and easy
	// Don't need to worry about how the rest of our scripts will be executed only after jQuery loads.. yet
	document.write("<script type=\"text/javascript\" src=\"/~site/siteapps/javascript/ecommerce/lib/jquery-1.6.1.min.js\" ></script>");
}
