//<![CDATA[

/*-------------------------------------------------------------------*/
/* StyleSheet Effects for Select Language ---------------------------*/
function addEvent (elm, listener, func) {
	try {
		elm.addEventListener(listener, func, false);
	}
	catch(e) {
		elm.attachEvent("on" + listener, func);
	}
}



/* openWindow -------------------------------------------------------*/
function MM_openBrWindow(theURL,winName,features) { //v2.0
  var w = window.open(theURL,winName,features);
  w.focus();
}

/* fadein -------------------------------------------------------*/
function fadein() {
	$('#announce').fadeIn(500);
}
function fadeout() {
	$('#announce').fadeOut(500);
}




//]]>
