﻿/// <reference path="jquery.js" />
/// <reference path="jquery.intent.js" />

$(function () {

	$('.page .header .contents .navigation ul .root').hover(
		function () {
			$('ul', this).slideDown(100);
		},
		function () {
			$('ul', this).slideUp(100);
		}
	);

});
