// DOM Loaded 
$(function(){ 
     
    //init js styles 
    $('body').addClass('hasJS'); 
     
	 
    // homepage cycles 
    $('#feature_gallery .bigimg').wrapAll('<div class="bigimgs">').parents('#feature_gallery').prepend('<ul class="menu" id="feature_gallery_pager">').cycle({ 
        fx:'fade', 
        easing: 'swing', 
        inDelay:    10000, 
        drop:       40, 
        timeout:    10000, 
        pause:      true,
		before:  onBefore,
        slideExpr: '.bigimg', 
        pager:      '#feature_gallery_pager', 
        pagerAnchorBuilder: function(idx, slide) { 
          
            return '<li><a href="#" class="pagerbuttons"><span>'+slide.title+'</span></a></li>';  
        } 
		
    });
	
$(function() {
    jQuery('#feature_gallery_pager').jcarousel({
        scroll:1
    });
});

	
function onBefore() { 
    $('#imageHeadline').html(this.id);
    
    //alert(this.title);
    
	if (this.title == "1")
    {
    	$('#imageBlurb').html("Six3 Systems provides a full range of biometric and identity solutions and services.  Our expertise ranges from finger, palm, face, and iris examinations to exploitation and forensic analysis.  Our solutions include identity proofing and vetting; biometric-based authorization; and identity database management.");
    }
    else if (this.title == "2")
    {
    	$('#imageBlurb').html("Six3 Systems provides cyber solutions, products, and thought leadership related with Cyber Security.  We combine unique subject matter expertise with cutting-edge technologies that result in positive mission impact.");
    	
    }
    else if (this.title == "3")
    {
    	$('#imageBlurb').html("Six3 Systems has operational teams that excel in signal collection, processing and analysis. Our capabilities are very unique to include a reusable ISR framework and platform to meet many customer needs.  We have operational personnel stationed around the world in support of our customers' missions.");
    }
    else if (this.title == "4")
    {
    	$('#imageBlurb').html("Six3 Systems is pushing the envelope to create, manage, and exploit information using private cloud technologies and services such as virtualization, web management suites, SOAP and REST web services, and multi-tenant architectures.");
    	
    }
    else if (this.title == "5")
    {
    	$('#imageBlurb').html("Six3 Systems is promoting solutions that integrate the use of social computing platforms to enhance how we safeguard our country by enabling people to interact in a more natural way and expressing ideas and thoughts using clusters of expertise and knowledge that have gone untapped.");
    }
    else if (this.title == "6")
    {
    	$('#imageBlurb').html("Six3 Systems works to improve our homeland's capabilities by combining our expertise in information sharing platforms and operational need.  Our solutions have impact for the analyst, first responder, and law enforcement missions.");
    }
    else if (this.title == "7")
    {
    	$('#imageBlurb').html("Six3 Systems has significant expertise with the Intelligence lifecycle in its entirety.  Our solutions will facilitate many of the Intelligence Lifecycle capabilities using a mix of existing capabilities, new cutting edge technologies, and untapped corporate knowledge.");
    }
    else if (this.title == "8")
    {
    	$('#imageBlurb').html("Six3 Systems is focused on bringing innovative solutions to solve our most complex problems facing our military and the DoD.  Our defense solutions and capabilities range from space mission innovation to C5 analytic processing, distribution, fusing, and visualizing data from many sources.");
    }
}
     
}); 
 
/* Window load event (things that need to wait for images to finish loading) */ 
//equal heights 

 

