function title_home()
{
	window.location = "/";
}

function title_contatti()
{
	window.location = "/contatti.php";
}

function title_info()
{
	window.location = "/faq.php";
}

function title_proposta_mese()
{
	window.location = "/disegni.php/promo/1";
}

function title_edizioni()
{
	window.location = "/disegni.php/edizioni/1";
}

function item_novita()
{
	var now = new Date();
	window.location = "/disegni.php/novita/1/rn/" + now.getTime();
}

function item_elenco_completo()
{
	window.location = "/disegni.php";
}

function item_elenco_autori()
{
	window.location = "/autori.php";
}

function item_cataloghi()
{
	window.location = "/cataloghi.php";
}

function item_residui()
{
	window.location = "/disegni.php/rescat/1";
}

function item_login()
{
	window.location = "/user-login.php";
}

function item_register()
{
	window.location = "/user-register.php";
}

function item_editprofile()
{
	window.location = "/user-register.php/op/edit";
}

function title_search()
{
	ShowSearchBar();
}

function item_logout()
{
	window.location = "/logout.php";
}

function title_ita()
{
	var newLoc = window.location.href.replace(/\/lang\/(ita|eng)/,'');
	newLoc = newLoc.replace(/\/rn\/[^\/]+/,'');
	window.location = newLoc + (newLoc.substr(newLoc.length-1, 1) == '/' ? 'index.php' : '') + "/lang/ita"
}

function title_eng()
{
	var newLoc = window.location.href.replace(/\/lang\/(ita|eng)/,'');
	newLoc = newLoc.replace(/\/rn\/[^\/]+/,'');
	window.location = newLoc + (newLoc.substr(newLoc.length-1, 1) == '/' ? 'index.php' : '') + "/lang/eng"
}

