jQuery(document).ready(function($) {
	  
	  //$("#btn_top_register").click(function(){
	    
	    //window.open("http://124.148.16.222/appwebsite/SelfRegistrationExt.aspx?SLP=Topdocs");
	  //});
	  
	  //slide show
         $('#m_slideshow ul').after('<div id="nav_btn">').cycle({
        timeout: 6000,  // milliseconds between slide transitions (0 to disable auto advance)
        fx:      'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...            
        pager:   '#nav_btn',  // selector for element to use as pager container
        pause:   0,   // true to enable "pause on hover"
        cleartypeNoBg:   true,
        speed:           500,
        pauseOnPagerHover: true, // true to pause when hovering over pager link
        pagerAnchorBuilder: null
        
    });

     //http://www.mathachew.com/sandbox/collapsible-menu/
     // document portal collapsable menu - Fade
    	//$("#menu2 > li > a.expanded + ul").fadeIn("normal");
    	$("#menu2 > li > a").click(function() {
    		var el = $(this).parent().find('> ul');

    		if($(this).hasClass("collapsed"))
    			$(el).fadeIn('normal');
    		else
    			$(el).fadeOut('normal');

    		$(this).toggleClass("expanded").toggleClass("collapsed");
    	});
    	
    	$('div.submenu').wrap('<div class="m_float_right" style="background:#ccc;margin:20px 0 5px 20px"></div>');
      $('div.submenu').corner("round 5px").parent().css('padding', '1px').corner("round 6px");

  });
  

/*
function ProcessLogin() {
  document.system_login.action = "/form/login-process.php";
  //document.system_login.submit();
  location.reload();
}


function HighlightLogin ( )
{
  document.system_login.username.focus();
  document.getElementById('loginandorderonline').innerHTML='Please Login or Register Above';
  document.getElementById("login").style.background = "#CDE9C9";
  
}
*/
