/**
 * Slider para las noticias del home
 * By Leandro Tec
 * Propiedad de Grupo Ultrafemme
 */

$(document).ready(function(){

	$(function(){
		 $('#slider_news') 
		  .anythingSlider({
			  resizeContents      : false,
				enableNavigation    : false,
		  })
		  .anythingSliderFx({
		    // base FX definitions
		    // '.selector' : [ 'effect(s)', 'size', 'time', 'easing' ]
		    // 'size', 'time' and 'easing' are optional parameters, but must be kept in order if added
		    '.quoteSlide:first *' : [ 'grow', '24px', '400', 'easeInOutCirc' ],
		    '.quoteSlide:last'    : [ 'top', '500px', '400', 'easeOutElastic' ],
		    '.expand'             : [ 'expand', '10%', '400', 'easeOutBounce' ],
		    '.textSlide h3'       : [ 'top fade', '200px', '500', 'easeOutBounce' ],
		    '.textSlide img,.fade': [ 'fade' ],
		    '.textSlide li'       : [ 'listLR' ]
		  });
		 
		});
	

	/*Previa Nota
	$(".new-prevNav").click(function(){

		var idLAsPost = $(".last_post").val()-1;
		
		$.post('/blog/getAnotherPost.html', { lastPost: idLAsPost,defaultPost:"last" }, function(data) {
			$('#news_Section').fadeOut(500,function(){
				$('#news_Section').html(data);
				$('#news_Section').fadeIn(500);
			});
		});

	});


	$(".new-nextNav").click(function(){

		var idLAsPost = $(".last_post").val()+1;

		$.post('/blog/getAnotherPost.html', { lastPost: idLAsPost,defaultPost:"first" }, function(data) {
			$('#news_Section').fadeOut(500,function(){
				$('#news_Section').html(data);
				$('#news_Section').fadeIn(500);
			});
		});

	}); */

});
