jQuery(document).ready(/*This function gets loaded when all the HTML, not including the portlets, isloaded.*/function() {jQuery("#recherche").click(function() {jQuery(this).attr("value", "");							   });jQuery(".form input[type='text']").click(function() {jQuery(this).attr("value", "");							   });jQuery("body").mouseover(function(e) {o = jQuery(e.target);while(o.parent()) {if(o.is("#navigation")) {break;}else if(o.is("html")) {jQuery("#navigation>ul>li").removeClass("on");jQuery("#navigation>ul>li>ul").hide();break;}o = o.parent();}});jQuery("#navigation>ul>li").mouseover(function() {jQuery("#navigation>ul>li").removeClass("on");jQuery("#navigation>ul>li>ul").hide();jQuery(this).addClass("on");jQuery(this).children("ul").show();							   });});Liferay.Portlet.ready(/*This function gets loaded after each and every portlet on the page.portletId: the current portlet's idjQueryObj: the jQuery wrapped object of the current portlet*/function(portletId, jQueryObj) {});jQuery(document).last(/*This function gets loaded when everything, including the portlets, is onthe page.*/function() {});