$(function(){
    init();
});

function init() {    
    // Blur on focus
    $('a').focus(function() { this.blur(); });
    $("#mainNav ul li:last a").addClass("last");
    $.fn.cycle.defaults.timeout = 3000;

    	$('#cycle').cycle({ 
    		fx:     'scrollRight', 
    		timeout: 6000, 
    		delay:  -2000 
    	});
    	
    $('label.required').append(' <em>*</em>'); 	
	
	 $('a.lightbox').lightBox({
    		imageLoading: 'http://15607.mycms.co.nz/asset/images/lightbox-ico-loading.gif',
    		imageBtnClose: 'http://15607.mycms.co.nz/asset/images/lightbox-btn-close.gif',
    		imageBtnPrev: 'http://15607.mycms.co.nz/asset/images/lightbox-btn-prev.gif',
    		imageBtnNext: 'http://15607.mycms.co.nz/asset/images/lightbox-btn-next.gif'
    }); // Select all links with lightbox class
		

}