// =======================
// Search the current HREF for a string
function searchUrl(needle){
	return window.location.href.search(needle) !== -1;
}

// =======================
// Import other scripts by appending script tags to the body
function importLibrary(path){
	var s=document.createElement('script');
	s.setAttribute('src',path);
	document.getElementsByTagName('body')[0].appendChild(s);
}

// =======================
// check if jQuery is available. If not, import library
if(typeof jQuery == 'undefined'){
	importLibrary('http://code.jquery.com/jquery-1.4.2.min.js');
}

//importLibrary('http://www.a-r-amedia.org/a-r-a_org/js/jquery.nivo.slider.pack.js');
importLibrary('http://www.a-r-amedia.org/a-r-a_org/js/all.js');
importLibrary('http://www.a-r-amedia.org/a-r-a_org/js/pngfix.js');
