// =========================== GLOBAL JAVASCRIPT ===========================
// 	We maken gebruik van jQuery 1.3.2 via de Google AJAX Api.
// 	Onderstaande scripts worden op elke pagina gebruikt
// =========================================================================

// =========================== FUNCTIONS

function init(){
	// Empty the formfields onclick
	$('#username, #password').emptyonclick();
}


// =========================== EVENTS
$(init()); // Yup, a tiny onload..



$(window).load(function(){
		
	// with parameters	 
	$("#accordion1").accordion({  
		itemsAmountVisible: 999,
		toggleSpeed: 'slow',  
		showAllSpeed: 'fast',  
		showRecentSpeed: 'fast',
		showButtons: 'true'
	 });  

});
