//from http://www.htmlcodetutorial.com/forms/index_famsupp_158.html
function numbersonly(myfield,e,dec){var key;var keychar;if(window.event)key=window.event.keyCode;else if(e)key=e.which;else return true;keychar=String.fromCharCode(key);if((key==null)||(key==0)||(key==8)||(key==9)||(key==13)||(key==27))return true;else if((("0123456789").indexOf(keychar)>-1))return true;else if(dec&&(keychar==".")){myfield.form.elements[dec].focus();return false}else return false};


jQuery(document).ready(function(){
	
	$('#menu').children('h3:not(.noAcc)').each(function(num, el){ 
		$(el).next().hide();
		$(el).next().css({width:'500px'});
	});
	
	$('#menu').children('h3:not(.noAcc)').click(function() {
		/*if ($(this).next().is(":visible")) { /*return false;* / }
		
		$(this).siblings('h3:not(.noAcc):visible').next().hide(500);		
		$(this).next().show(500);
		return false;*/
	});
	
	$('.noAcc').click(function(){return false;});
	
	$('a.biggerPhoto').fancybox({'titleShow':false, cyclic:true});
	
});
