/* Author: Bevan Stephens

*/

$(document).ready(function(){
	
	/*
	var line1 = $('#top-slogan span.line-1');
	var line2 = $('#top-slogan span.line-2');
	var line3 = $('#top-slogan span.line-3');
	
	line1.hide();
	line2.hide();
	line3.hide();
	
	line1.delay(300).animate({
    	width: 'toggle'
   	}, 1000, function() {
    
    	line2.delay(300).animate({
    		width: 'toggle'
   			}, 1000, function() {
    			
    			line3.animate({
    			width: 'toggle'
   				}, 1000, function() {
    
    	
  				});
    	
  			});
    	
  	});
  	*/
  
  
  $(function() {
		$("#3").lavaLamp({
			fx: "backout", 
			speed: 700,
			click: function(event, menuItem) {
				
			}
		});
	});
  
  
  
  // SSA CHART
    if ($(".ssa-chart").length){
    
        // Reset Function
        function hideAll() {
            $(".ssa-chart li div").hide();
            
        }
        
        // Initialize
        hideAll();
       
        
        
        // Button behaviours
        $('.ssa-chart li').mouseover(function() {
            hideAll();
            $(this).children().show();
        });
        
        $('.ssa-chart li').mouseout(function() {
            hideAll();
            
        });
        
        
        
            }
  
  
  
 });























