// F1 front-end/back-end toggle
	if (document.all) {
		document.onhelp = function() {
			location.href = 'admin/';
			return false;
		}
	} else {
		document.onkeydown = function (evt) {
			if (evt.keyCode == '112') {
				location.href = 'admin/';
				return false;
			}
		}
	}

$(function(){

	// BARRANAV (mbMenu)
	$('#barraNav').buildMenu({
		menuSelector:".overlay"
		, template:''
		, menuWidth:220
		, openOnRight:false
		, containment:'window'
		, iconPath:"ico/"
		, hasImages:false
		, fadeInTime:0
		, fadeOutTime:200
		, menuTop:0
		, menuLeft:0
		, submenuTop:0
		, submenuLeft:4
		, opacity:1
		, shadow: false
		, shadowColor: "black"
		, shadowOpacity: 1
		, openOnClick:false
		, closeOnMouseOut: true
		, closeAfter:300
		, minZindex:"auto"
	});
	
	//UNIFORMO L'ALTEZZA DI DUE COLONNE
	$('#content').height() > $('#colSx').height() ? $('#colSx').height($('#content').height()) : $('#content').height($('#colSx').height());
	$('#colSx').height() > $('#content').height() ? $('#content').height($('#colSx').height()) : $('#colSx').height($('#content').height());

	// MENU SX colore bordo singole voci
	$('#menuSx a')
		.eq(0).css('borderLeftColor','#009df1').end()
		.eq(1).css('borderLeftColor','#1ca7f1').end()
		.eq(2).css('borderLeftColor','#39b1f1').end()
		.eq(3).css('borderLeftColor','#56bbf1').end()
		.eq(4).css('borderLeftColor','#71c5f1').end()
		.eq(5).css('borderLeftColor','#8ecff1').end()
		.eq(6).css('borderLeftColor','#aad8f1')


})

