/*
 * Misc javascript for Megaloverapid | BestJav4u
 * By blacknight@megaloverapid
 * Ver 1.0
 */

function goMovie() {
	var code = $("go_movie_code").value.clean();
	if(code == '') {
		alert('Please enter code of movie');
		return false;
	}
    location.href = websiteFullPath + websiteLanguage + '/movie/' + encodeURIComponent(code);
    return false;
}

function goSearch() {
	var s = $("go_search_s").value.clean();
	if(s == '') {
		alert('Please enter content');
		return false;
	}
    location.href = websiteFullPath + websiteLanguage + '/search/' + encodeURIComponent(s);
    return false;
}

function activeInput(id, value) {
	$(id).value = value;
	$(id).onfocus = function() {
		if(this.value == value) this.value = '';
	}
	$(id).onblur = function() {
		if (this.value == '') this.value = value;
	}
}

var currentNews = 0;

function setNews(index) {
	$('news_bar').innerHTML = news[index];
	currentNews = index;
}

function changeNews(direct) {
	if(direct) {
		var next = currentNews == totalNews - 1 ? 0 : currentNews + 1;
	} else {
		var next = currentNews == 0 ? totalNews - 1 : currentNews - 1;
	}
	setNews(next);
}

var displayTeamInfo = false;

function teamInfoDisplay() {
	if(displayTeamInfo) {
		$('team_info').style.display = 'none';
		displayTeamInfo = false;
	} else {
		$('team_info').style.display = 'block';
		displayTeamInfo = true;
	}
}

var hideShoutbox = true;

function toggleShoutbox() {
	if(!$('shoutbox_1')) return;
	
	if(hideShoutbox) {
		$('shoutbox_1').style.display = 'block';
		$('shoutbox_2').style.display = 'block';
		hideShoutbox = false;
	} else {
		$('shoutbox_1').style.display = 'none';
		$('shoutbox_2').style.display = 'none';
		hideShoutbox = true;
	}
}