$(document).ready(function () {
    $('.nav>li').hover(
		function () {

		    $('ul', this).show();
		    return false;

		},
		function () {

		    $('ul', this).hide();

		}
	);

});

function ActivateFlash()
{
	objects = document.getElementsByTagName("object");
	for (var i = 0; i < objects.length; i++)
	{
	    objects[i].outerHTML = objects[i].outerHTML;
	}
}
