$(document).ready(function(){



	$("ul.topnav li").hover(function() { //When trigger is clicked...
       clearTimeout($.data(this, 'timer'));
		//Following events are applied to the subnav itself (moving subnav up and down)
		$(this).children("ul.subnav").slideDown(200).show(); //Drop down the subnav on click

    }, function () {
    $.data(this, 'timer', setTimeout($.proxy(function() {
      $('ul.subnav', this).stop(true, true).slideUp(200);
    }, this), 200));
  });
	

});

//     	$(this).hover(function() {
//		}, function(){
//			$(this).find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
//		});
//	});
