/**
 *
 * Functies die uitgevoerd moeten worden na het laden
 *
 **/
 $(document).ready(function(){
	// Hoveren van een tabel rij
	 $(".ColorRow").hover(
	 	function() {
	 		$(this).css('background-color','#F4F4F4');
	 	},
	 	function() {
	 		$(this).css('background-color','');
	 	}
	 )
	
	/**
	 * @name input text fix
	 * Zorgen dat nooit meer dan database aankan ingevoerd wordt
	 */
	$('input[type="text"]').each(
		function() {
			if(!($(this).attr("maxlength") < 255)) {
				$(this).attr("maxlength", "255")
			}
		}
	)
	
	/**
	 * @name ColorActive
	 * Doorlopen menuitems en selecteren juisten
	 */
	$('#MenuWrapper li a[href="'+window.location.pathname+'"]').addClass('ActiveItem').attr("href", "javascript:void();")
	
})


