// Triggers drop down menus on hover events
function dropDownMenus()
{
    $('.dropdown-trigger').mouseenter(function()
	{
		$(this).children('.dropdown').show();
	}).mouseleave(function()
	{
		$(this).children('.dropdown').hide();
	})
}

$(document).ready(function()
{
	dropDownMenus();
})