jQuery(function( $ ){
	/**
	 * Most jQuery.localScroll's settings, actually belong to jQuery.ScrollTo, check it's demo for an example of each option.
	 * @see http://flesler.demos.com/jquery/scrollTo/
	 * You can use EVERY single setting of jQuery.ScrollTo, in the settings hash you send to jQuery.LocalScroll.
	 */
	
	// The default axis is 'y', but in this demo, I want to scroll both
	// You can modify any default like this
	/*$.localScroll.defaults.axis = 'xy';*/
	
	// Scroll initially if there's a hash (#something) in the url 
	/*$.localScroll.hash({
		target: '#content', 
		queue:true,
		duration:1500
	});*/
	
	/**
	 * NOTE: I use $.localScroll instead of $('#navigation').localScroll() so I
	 * also affect the >> and << links. I want every link in the page to scroll.
	 */
	/*$.localScroll({
		target: '#content', 
		queue:true,
		duration:1000,
		hash:true,
		onBefore:function( e, anchor, $target ){
			
		},
		onAfter:function( anchor, settings ){
			
		}
	});*/
});


$(document).ready(function() {
    
	$('#tabFaqs').click(function() {
        window.setTimeout('initFaqs()', 300);
    });
	
	$('#botIV').click(function() {
        window.setTimeout('initNovidades()', 100);
    });
});

function initFaqs(){
	$('.navegI .next').click(function(){
		$('.section').animate({ left: "-620px"}, 800 );
		return false;
	});
	$('.navegII .prev').click(function(){
		$('.section').animate({ left: "0px"}, 800 );
		return false;
	});
}

function initNovidades(){
	$('#linkNews1').click(function(){
		$('.blockRowSlide').animate({ left: "-672px"}, 800 );						   
	});
	$('#linkNews2').click(function(){
		$('.blockRowSlide').animate({ left: "-1344px"}, 800 );						   
	});
	$('#linkNews3').click(function(){
		$('.blockRowSlide').animate({ left: "-2016px"}, 800 );						   
	});
	$('.blockLinkNovidades a').click(function(){
		$('.blockRowSlide').animate({ left: "0px"}, 800 );						   
	});
	$('.blockLinkSlide a, .blockLinkNovidades a').click(function(){
		return false;						   
	});
}