﻿
$(document).ready(function(){
$('li.dropdown').hover(
function() { $('div.subdropdown', this).stop(true, true).slideDown(300); },
function() { $('div.subdropdown', this).stop(true, true).slideUp(300); });
});

$(document).ready(function(){
	$('li.headlink').hover(
		function() { $('ul', this).css('display', 'block'); },
		function() { $('ul', this).css('display', 'none'); });

	
});

$(document).ready(function()
{
	
	//slides the element with class "menu_body" when mouse is over the paragraph
	$("p.menu_head").mouseover(function()
    {
	     $(this).css({backgroundImage:""}).next("div.menu_body").slideDown(500).siblings("div.menu_body").slideUp("slow");
         $(this).siblings().css({backgroundImage:"url(left.png)"});
	});
});
  
