/*
$(document).ready(function(){
jQuery('#rankingAccordion').accordion(); 
	
	lastBlock = $("#a1");
	maxWidth = 306;
	minWidth = 80;


$('.imvInformacoes ul li').makeacolumnlists
	({
	 cols:2,colWidth:0,equalHeight:false,startN:1,
	 });
});

*/

$(function(){
	$("#abasPrincipais ul li a").hover(function() {
		var widthInicial = "100px";
		var widthFinal = "309px";
		
		var thisClass = $(this).parent().attr("class");
		
		$("#dizeres div").stop().css({ "width": widthInicial, "opacity":"0"}).hide();
		//alert($("#dizeres div.box07").position().left);
		$("#dizeres div.box07").css({left: "0"});
		
		if(thisClass != "box07"){
			$("#dizeres div." + thisClass).show().animate(
				{
					opacity: 1,
					width: widthFinal
				},500
			);
		}else{
			$("#dizeres div.box07").css({width: widthFinal});
			$("#dizeres div." + thisClass).show().animate(
				{
					opacity: 1,
					"left": "-=142px"
				},500
			);			
		}
		
	});
	$("#footerHome, #maxTela").hover(function(){
		$("#dizeres div").stop().css({ "width": "100px", "opacity":"0"}).hide();
		$("#dizeres div.box07").css({left: "0"});
	});
	
})
