jQuery(document).ready(function(){  
						   
	setTimeout(function(){ jQuery('#messages').fadeOut(1000); }, 5000);					

	jQuery(".click").click(function(){
		id=jQuery(this).attr("id");
		jQuery('#nav ul:not(#subnav'+id+')').hide();
		jQuery('#nav ul ul').show();
		jQuery("#subnav"+id).toggle();
	} );
      
});

function changeCaptcha()
{
        var rand=Math.floor(Math.random()*10000)
        jQuery('#captchaSection img').attr({"src":"/images/captcha/captcha.php?rand="+rand});
}

function clearDefault(el) {
	if (el.defaultValue==el.value) el.value = "";
}
function restoreDefault(el) {
	if (el.value == "") el.value = el.defaultValue;
}
