// NAVIGATION

$(document).ready(function() {

$('#nav li').children('ul').css('display', 'none');


 var site = function () {
	 this.navLi = $('#nav li').children('ul').css('display', 'none').end();
	 this.init();
 };

 site.prototype = {
	 init: function () {
		 this.setMenu();
	 },
	 setMenu: function () {
		 this.navLi.hover(function () {
			 //mouseover
			 $(this).find('ul').stop(true, true).fadeIn(250);

		 }, function () {
			 //mouseout
			 $(this).find('ul').stop(true, true).fadeOut(350);
		 });
	 }
 }

 new site();
 
});
