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

// jQuery
$(document).ready(function(){

	// CROSS SLIDE branding
	$('#branding').crossSlide({
	  speed: 45,
	  fade: 1
	}, [
	  { src: '/images/branding-slide-01.jpg', dir: 'up'   }
	  , { src: '/images/branding-slide-02.jpg', dir: 'down' }
	  , { src: '/images/branding-slide-03.jpg', dir: 'up'   }
	  , { src: '/images/branding-slide-04.jpg', dir: 'down' }
	  , { src: '/images/branding-slide-05.jpg', dir: 'up'   }
	  , { src: '/images/branding-slide-06.jpg', dir: 'down' }
	  , { src: '/images/branding-slide-07.jpg', dir: 'up'   }
	  , { src: '/images/branding-slide-08.jpg', dir: 'down' }
	  , { src: '/images/branding-slide-09.jpg', dir: 'up'   }
	  , { src: '/images/branding-slide-10.jpg', dir: 'down' }
	]);	
	
	
	// FACEBOX
		$("a[rel=facebox]").facebox();
	

	// CAPTCHA: ELIMINO BORDO
		$("#simple_captcha").children().andSelf().css({
			border: "0"
		});
		
});


