// JavaScript Document
function passaNoticia(){
	var atual = parseInt($("#contorno").css("top"));
	if(atual == 239){
		fAtual = 1;
		var soma = 85;
	}else if(atual == 324){
		fAtual = 2;
		var soma = 90;
	}else if(atual == 414){
		fAtual = 3;
		var soma = -175;
	}
	$("#fotoDestaque").html("<img src='"+$("#imNot"+fAtual).html()+"' alt='' width='315' />");
	mudaAltura(atual,soma);
}
function mudaAltura(atual,soma){

	var nova = parseInt(atual)+soma;
	time = setTimeout(function(){
			$("#contorno").animate({
				"top":""+nova+"px"
			},1000);
			setTimeout(function(){
			passaNoticia();
			},1100);
		},3000);
}

function abreHoroscopo(){
	$("#horoscopoAbrir").dialog({
		width: 250,
		height: "auto",
		draggable: true,
		title: "Horoscopo",
		resizable: false
	});
	
//	$(".ui-dialog-content ui-widget-content").css({"height":"200px","*height":"300px"});
}
