/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 */

$(function()
{
	// Supernews
	var supernews = $("#supernews");
	var href = $("li.hover.selected a", supernews).attr("href");
	href = href.replace("#", ".");
	$(".data:not("+href+")", supernews).hide();
	
	// BAFICI en imagenes
	$("#bimages .caption").css("opacity", "0.9");
	$("#bimages img").ready(scrollDown());
	
});

function scrollDown(){
	$("#bimages .image").animate({ top: -175 }, 20000, function(){ scrollUp() });
}

function scrollUp(){
	$("#bimages .image").animate({ top: -20 }, 20000,  function(){ scrollDown() });
}