/**
 * @author joorik
 * Some code snippets for the page
 */
$(document).ready(function(){
		$('.main_menu_item').hover(
			function() { $('ul:first', this).css('display', 'block'); },
			function() { $('ul:first', this).css('display', 'none'); });
		testFunc2();
	});
