/* Latinos JS v1 */

$(document).ready(function(){

        function formatText(index, panel) {
		  return index + "";
	    }
    
        $(function () {
        
            $('.slidersml').featpanel({
                easing: "easeInOutExpo",        
                autoPlay: false,             
                delay: 3000,             
                startStopped: false,      
                animationTime: 600,             
                hashTags: false,                
                buildNavigation: false,         
        		pauseOnHover: false,        
        		startText: "Go",             
		        stopText: "Stop",               
		        navigationFormatter: formatText       
            });
            
        });

    
        $(function () {
        
            $('.slidermain').featpanel({
                easing: "easeInOutExpo",      
                autoPlay: true,              
                delay: 5000,                  
                startStopped: false,            
                animationTime: 700,           
                hashTags: false,            
                buildNavigation: true,        
        		pauseOnHover: false,         
        		startText: "",     
		        stopText: "",      
		        navigationFormatter: formatText      
            });
            
        });




});

$(document).ready(function () {
	$('a.basic, a#secondregister').click(function (e) {
		e.preventDefault();
		$('#userregister').modal();
	});
});