jQuery.noConflict();

jQuery(document).ready(function() {

	// Focus on the search box
	jQuery("#q").focus();
	jQuery("#q").select();
	
});

function insertLetter(code) {
	document.forms[0].q.value=document.forms[0].q.value+code;
	document.forms[0].q.focus();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
	window.open(theURL,winName,features);
}
