/**
 *
 * 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 RoundIt
	 */
	$('#HeaderImageBox').corner('left 16px')
	$('.MenuBlock, .MenuFotoBlock').corner('left 16px').corner('br 16px')
	$('.MenuFotoBlock img').corner('left 16px').corner('br 16px')
	
	
	/**
	 * @name GoogleAnalytics
	 *
	var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
	// Via jQuery vind ik mooier!
	$.getScript(gaJsHost + "google-analytics.com/ga.js", function() {
		try {
			var pageTracker = _gat._getTracker("UA-11894630-1");
			pageTracker._trackPageview();
		} catch(err) {} 	
	})*/

})

