/*** Menu - Mouse Over & Normal Effect ***/
function normalEffect(menu_id){
	path="images/menu/menu_"+menu_id+".png";
	document.getElementById(menu_id).src=path;
}

function hoverEffect(menu_id){
	path="images/rollover/rollover_"+menu_id+".png";
	document.getElementById(menu_id).src=path;
}

function changeIcon(elem){
	var element = document.getElementById(elem);
	var src = element.src;
	var imgName;
	var srcArray=new Array();
	
	srcArray=src.split('/');
	imgName=srcArray[srcArray.length-1];
	if(imgName=='plus_icon.gif'){
		element.src='images/faq/minus_icon.gif';
	}else{
		element.src='images/faq/plus_icon.gif';
	}
}

// DHTML Popup Window

var contest_window;
function open_welcomeback_pop(){
	contest_window=dhtmlmodal.open("welcomeback", "div", "welcome_back", " ", "width=510px, height=470px,center=1,resize=0,scrolling=0,style='margin:0px; padding:0px; background:#fff;'", "recal");
	loadImgLogin();
}
