var $j = jQuery.noConflict();

$j(document).ready(function($) {
   $("#nav li:has(ul)>a").each(function(){
	  $(this).attr('href', '#');
	  $(this).css('cursor', 'cell');
   });
   
   $('#tool-loginform').submit(function(){
   		window.setTimeout('document.forms["tool-loginform"].reset()', 1000);
		return true;
   });

});
