//Código Java usado par alos efectos de www.viveconce.cl
//basado en jQuery
//Escrito por Matías Tripailao Iturra
//mtripilao[at]gmail.com


///////////////////////////////////////////////////////////////////////////
//	STICKY BANNER
///////////////////////////////////////////////////////////////////////////
$(document).ready(function() {
	$('.top').addClass('hidden');
	$.waypoints.settings.scrollThrottle = 30;
	$('#page').waypoint(function(event, direction) {
		$('.top').toggleClass('hidden', direction === "up");
	}, {
		offset: '-100%'
	}).find('#adSticky').waypoint(function(event, direction) {
		$(this).parent().toggleClass('sticky', direction === "down");
		event.stopPropagation();
	});
});


///////////////////////////////////////////////////////////////////////////
//	LISTA INFINITA
///////////////////////////////////////////////////////////////////////////
