/**
 *
 * Functies die uitgevoerd moeten worden na het laden
 *
 **/
 $(document).ready(function(){
	// Hoveren van een tabel rij
	$(".ColorRow").hover(
	 	function() {
	 		$(this).css('background-color','#EBEBEB');
	 	},
	 	function() {
	 		$(this).css('background-color','');
	 	}
	)
	
	// Weghalen H1 op hoofdpgina als hij leeg is
	if($('#ContentTitel').html() == "") {
		$('#ContentTitel').hide()
	}
	
	/**
	 * @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", "250")
			}
		}
	)
	

	/**
	 * @name PreLoadImages
	 */
	jQuery.preLoadImages(	"/images/image/bowentechniek-en-indicaties.jpg", 
							"/images/image/contact.jpg",
							"/images/image/home_voorstellen.jpg",
							"/images/image/lezingen-en-bedrijfsmiddage.jpg",
							"/images/image/nieuws.jpg",
							"/images/main_home_bg.png",
							"/images/left_logo.jpg");
	
	/**
	 * @name ColorActive
	 * Doorlopen menuitems en selecteren juisten
	 */
	$('#BottomMenu a[href="'+window.location.pathname+'"]').addClass('ActiveItem').attr("href", "javascript:void();").css("cursor", "default")
})


