$(document).ready(function(){
	
	var url;
	var reportname = "";

	$(".menu-item").mouseover(function(){
		$("#"+$(this).attr("id")+" .sub-menu").show();
	
	});
	
	$(".menu-item").mouseout(function(){
		$("#"+$(this).attr("id")+" .sub-menu").hide();
	
	});
	
	if(window.location.href.indexOf('?request')>0)
	{
		url = document.referrer.split("/");
	
		if(url.length>1)
		{
			reportname = url[url.length-2];
		}

		$(".page-id-14 .your-comentarios textarea").val("Document requested: ".concat(reportname));
	}	
});
