﻿$(function(){
	
	$("#navigationRoot .parentLink").hover(function(event){
			targetId = event.target.id.split("_");
			pid = targetId[1];
			if ($("#children_"+pid).attr("currentPage") != "true"){
				$("#children_"+pid).stop().show();
			}
		},
		function(event){
			targetId = event.target.id.split("_");
			pid = targetId[1];
			if ($("#children_"+pid).attr("currentPage") != "true"){
				$("#children_"+pid).stop().hide();
			}
		}	
	);
	
});