// JavaScript Document
jQuery.noConflict();
jQuery(document).ready(function(){
  jQuery('a.readon').text('Read more...');
});
	/*jQuery(function() {
		//run the currently selected effect
		function runEffect(){
						
			//run the effect
			jQuery("#loginbox_newnz .field").show('blind',500);
			jQuery("#newnz").hide('blind',500);
			jQuery(".option a").animate({ color: "#fff" }, 500);

		};
		
		//set effect from select menu value
		jQuery("#newnz").click(function() {
			runEffect();
			return false;
		});

	});*/
	
	jQuery(function() {
		//run the currently selected effect
		function showOldnz(){
						
			//run the effect
			jQuery("#loginbox_oldnz").show('fade',500);
			jQuery("#loginbox_newnz").hide('fade',500);
		};
		
		//set effect from select menu value
		jQuery("#showOldnz").click(function() {
			showOldnz();
			return false;
		});

	});
	
	jQuery(function() {
		//run the currently selected effect
		function showNewnz(){
						
			//run the effect
			jQuery("#loginbox_newnz").show('fade',500);
			jQuery("#loginbox_oldnz").hide('fade',500);
		};
		
		//set effect from select menu value
		jQuery("#showNewnz").click(function() {
			showNewnz();
			return false;
		});

	});
	
	jQuery(function () {
	var austDay = new Date();
	austDay = new Date(2010, 11 - 1, 22);// yyyy, mm - 1, dd
	jQuery('#countdown').countdown({until: austDay, format: 'd'});
});

<!--//--><![CDATA[//><!--

sfHover = function() {
	var sfEls = document.getElementById("mainlevel").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);

//--><!]]>


