// JavaScript Document
/**
 * Change Brand MouseOver
 *
 * @param string url
 */
function changeImg(type, imgId, img) {
	document.getElementById("img-" + imgId).src = "/img/brands/logo-" + type + "/" + img;
}

/**
 * Change Language
 *
 * @param string url
 */
function changeLang(url) {
	document.location = webroot+url;
}

/**
 * Open Category
 *
 * @param string id Category id
 */
function openCategory(id) {
	document.location = webroot+lang+"/categories/view/"+id;
}

/**
 * Print email link (protection from spambots)
 * If javascript is disabled, nothing is visible
 *
 * @param string p1 Part 1 - this is username
 * @param string p2 Part 2 - this is domain and TLD
 * @param string name (optional) Display value
 */
function writemail(p1, p2, name) {
	if (typeof(name) == "undefined") {
		name = p1+"@"+p2;
	}
	document.write("<a href='mailto:"+p1+"@"+p2+"'>"+name+"</a>");
}
/*********************************************************************************************************/

$(document).ready(function(){
	$('#langselectbox').selectbox({debug: true});
});





