jQuery.noConflict();
jQuery(document).ready(function() {

});

var srcDir = 'img/home/';
function imgReplace(imgId, destination) {
	document.getElementById(imgId).setAttribute("src",srcDir+destination);
	return true;
}

function searchWiki() {
	document.form_search.search.value = document.form_search.q.value;
	document.form_search.action = 'http://de.wikipedia.org/wiki/Spezial:Search'; 
	document.form_search.submit();
}
function searchLeo() {
	document.form_search.search.value = document.form_search.q.value;
	document.form_search.action = 'http://dict.leo.org/?lang=de&lp=ende';
	document.form_search.submit();
}
function searchBibelserver() {
	document.form_search.ref.value = document.form_search.q.value;
	document.form_search.action = 'http://www.bibleserver.com/go.php';
	document.form_search.submit();
}

/* No Frameset... */
if(top != self)
	top.location=self.location;