/**
 * Site Initialisation, instantiates the tracker and initialises behaviours
 */
// http://planetozh.com
function basename(path) {
    return path.replace(/\\/g,'/').replace( /.*\// , '' );
}
function dirname(path) {
    return path.replace(/\\/g,'/').replace(/\/[^\/]*$/, '');;
}
$(document).ready(function() {
	Cufon.replace('h2,h3,h4,h5,h6,#document-nav a,.font,.navigation,#header a:not("h1 a"),#document-foot a',{hover: true, fontFamily: 'ZiptyDo'});
				
	$('.easy-slider').easySlider({
		auto: true,
		continuous: true,
		speed: 1200,
		pause: 8000,
		controlsShow: false
	});
	$('.easy-slider li').addClass('show');
	$("a.thickbox").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': true, 'frameWidth': 960, 'frameHeight': 500, 'hideOnOverlayClick': false });

	if ($('#recaptcha_target').size() > 0) {
		Recaptcha.create(
			"6LdiywkAAAAAACPUOSeMGXKe4QcABg-5ellQ8iDg",
			document.getElementById('recaptcha_target')
		);
	}
});
