$(document).ready(function()
{
    $("#about-us ul").hide();
    $("#employers ul").hide();
    $("#job-seekers ul").hide();
    $("#search-jobs ul").hide();

    $("div#about-us").hover(
	function()
	{
	    $("div#about-us ul").fadeIn('fast');
	},
	function()
	{
	    $("div#about-us ul").fadeOut('fast');
	});

    $("div#employers").hover(
	function()
	{
	    $("div#employers ul").fadeIn('fast');
	},
	function()
	{
	    $("div#employers ul").fadeOut('fast');
	});

    $("div#job-seekers").hover(
	function()
	{
	    $("div#job-seekers ul").fadeIn('fast');
	},
	function()
	{
	    $("div#job-seekers ul").fadeOut('fast');
	});

    $("div#search-jobs").hover(
	function()
	{
	    $("div#search-jobs ul").fadeIn('fast');
	},
	function()
	{
	    $("div#search-jobs ul").fadeOut('fast');
	});
});


