/*****
	UtSicht Javascript file
*****/

$(document).ready(function() {
	initialiseBindings();
});

function initialiseBindings() {
	$('#navigationList').find('.rootLink').each(function() {
		$(this).hover(function() {
			$(this).find('.subMenu').css({'display': 'block'});
		}, function() {
			$(this).find('.subMenu').hide();
		});
	});
}
