  /***********************************************
   *   Vivid 2007 Core JS File      
   *   
   *   Used to setup menus, animations etc.
   *   
   *   Author: Stefan Sedich
   *   Rev: 20070927
   ***********************************************/
   

// Fires when the document is ready.
$(document).ready(function() {

    $(".nav").superfish({
        animation : {width:"show"},
        delay: 500
    });
			
		$("#login1 a").bind("click", function() {						
        $("#login2").slideToggle(100);    
        return false;               
    });			
    
    $("#newsTicker").NewsTicker({     
        showTop: 5          
    });							 
      
    $("#mainAccordian").HoverAccordian({
        collapsedWidth: 30,
        expandedWidth: 400,
        speed: 280,
        hideDelay: 1000
    });        
    
    $("#navBackground").css("opacity", 0.5);

});