$(document).ready(function() {
	
	$("#like").click(function() {
		$("#dislike").hide("blind", { direction: "horizontal" }, 700);
		$(this).addClass("active");
		$("#telltheworld").show("blind", { direction: "horizontal" }, 700);
		$(".plasticoverlay").show();
	});
	
	$(window).scroll(function() {
		var areWeThereYet = $('body').scrollLeft();
		
		if (areWeThereYet < 595) {
			$('nav a').removeClass('active');
			$('a[href=#anuncios]').addClass('active');
		} else if (areWeThereYet > 850 && areWeThereYet < 1615) { // +255 / +765
			$('nav a').removeClass('active');
			$('a[href=#calendario]').addClass('active');
		} else if (areWeThereYet > 1870 && areWeThereYet < 2635) {
			$('nav a').removeClass('active');
			$('a[href=#menjunge]').addClass('active');
		} else if (areWeThereYet > 2890 && areWeThereYet < 3655) {
			$('nav a').removeClass('active');
			$('a[href=#recursos]').addClass('active');
		} else if (areWeThereYet > 3910) {
			$('nav a').removeClass('active');
			$('a[href=#contacto]').addClass('active');
		} else {
			$('nav a').removeClass('active');
		}
	});
	
	$('#mainmenu a').bind('click',function(event){
		var $anchor = $(this);
		
		$('html, body').stop().animate({
			scrollLeft: $($anchor.attr('href')).offset().left - 255
		}, 1000, 'easeOutExpo');
		event.preventDefault();
	});
	
	$('.insertmagic a').hover(function() {
		var clss = $(this).attr('class');
		$('.sparkles, .sparkles .' + clss).stop().animate({ opacity: 1 });
		$(this).find('.title').stop().animate({ opacity: 1 }, 200);
		$(this).find('.triangle').stop().animate({ top: "-40px" });
		
	}, function() {
		var clss = $(this).attr('class');
		$('.sparkles, .sparkles .' + clss).stop().animate({ opacity: 0 });
		$(this).find('.title').stop().animate({ opacity: 0 });
		$(this).find('.triangle').stop().animate({ top: "-20px" });
	});
	
	$('#eventos li .expand').click(function() {
		$(this).parent().toggleClass('expanded');
		return false;
	});
	
	$('.vocalias').masonry({ columnWidth: 85 });
	
});
