// 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;
			}
		}
	}


$(document).ready(function(){
	
	
	// BARRANAV
	$('#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"
		, hoverIntent:0 //if you use jquery.hoverIntent.js set this to time in milliseconds; 0= false;
        , submenuHoverIntent: 0 //if you use jquery.hoverIntent.js set this to time in milliseconds; 0= false;
	});

	
	//COLOR BOX
	$("a[rel='foto']").colorbox({
		transition:"elastic"
		, width:"80%"
		, height:"90%"
		, slideshow: true
		, slideshowSpeed: 3000
		, opacity: 0.95		
	});
	
	$(".privacy")
	.colorbox({ 
		width:"80%"
		, height:"80%"
		, iframe:true
		, opacity: 0.85
	});
	
});

