jQuery(document).ready(function()
{
	// Initialize the primary navigation menu
	jQuery('.p-menu').dropdownMenu();
});

jQuery.fn.dropdownMenu = function()
{
	jQuery(this).find('li').hover(function()
	{
		jQuery('ul:first',this).hide().slideDown('fast');

	}, function()
	{
		jQuery('ul:first',this).stop(true,true).hide();
	});

	jQuery(this).find('li:has(ul)').find('a:first').append(' &raquo; ');
};
