// JavaScript Document
// Watson Dropdown menu

$(document).ready(function(){

	$('.dropdown_menu').hover(
		function () {
		$(this).children('.dropdown_menu_flyout').slideDown("fast");
		}, 
		function () {
		$(this).children('.dropdown_menu_flyout').slideUp("fast");
		})
		// slideUp and slideDown can be replaced by fadeIn, fadeOut. "fast" can also replaced by "slow", or simply enter in the miliseconds i.e. 500, 1000

	$('.dropdown_menu_flyout li a').hover(
	function(){
	$(this).fadeTo("fast","1.0");
	},
	
	function(){
	$(this).fadeTo("fast","0.8");})


});

