/***** PERSONAGENS *****/
var _not_run_promo10 = true;
jQuery.fn.scrollleft_promo10 = function() {
	
	if(_not_run_promo10){
		var dd_first = $(this).find("dl#box-personagens dd:eq(0)").clone();
		$(dd_first).css({"marginLeft": "40px"});
		_not_run_promo10 = false;
		$(this).find("dl#box-personagens dd:eq(0)").animate({marginLeft: "-220"},500,"swing",
		function(){
			$('div.box-main dl#box-personagens').append(dd_first);
			$(this).remove();
			_not_run_promo10 = true;
		});
	}
	return false;
};
jQuery.fn.scrollright_promo10 = function() {
	
	if(_not_run_promo10){
		var dd_last = $(this).find("dl#box-personagens dd:last()").clone();
		$(dd_last).css({"marginLeft": "-200px"});
		_not_run_promo10 = false;
		$('div.box-main dl#box-personagens').prepend(dd_last);
		$(this).find("dl#box-personagens dd:eq(0)").animate({marginLeft: "5px"},500,"swing",
		function(){
			$('div.box-main dl#box-personagens dd:last()').remove();
			_not_run_promo10 = true;
		});
	}
	return false;
};
$(function () { 

	
/***** PERSONAGENS *****/
$("#pagination #avanca a").click(function() {
	$('.box-main').scrollleft_promo10(); 
	return false;
});	
$("#pagination #volta a").click(function() {
	$('.box-main').scrollright_promo10();
	return false;
});

	
/***** SUBMENU *****/
if($.browser.msie && /6.0/.test(navigator.userAgent)) {//detect IE6

	$("li#brinquedos, li#video-game, li#entreterimento").each(function() {

		//Posição Y do limite entre o botâo e o submenu: 415
		$(this).find("a:eq(0)").mouseover(function(e) {

			$(this).next().css("display", "block");
				
		}).mouseout(function(e) {
			if(e.pageY < 415 || e.pageY > 525) {
				$(this).next().css("display", "none");
			}
		});

		
		$(this).find("ul").mouseover(function() { 

			$(this).css("display", "block");

		}).mouseout(function(e) {
			
			if( e.pageY > 420 ) {
				$(this).hide();
			}	
		});

	});
	
}
});

/***enquete***/
function Abre(url, width, height)
{
window.open(url,"_blank","resizable=yes,toolbar=no,status=no,menubar=no,scrollbars=yes,width=" + width + ",height=" + height)
}
function Fun_Enviar(formID)
{
	var formularios = document.forms.length;
	for(i=0;i<formularios;i++)
		{
		if(document.forms[i].name==formID)
		{
		var formulario = i;
		break;
		}
	}
	var num_respostas = document.forms[formulario].opcao.length;
	var resposta = num_respostas;
	var respostas = "";
	for(i=0;i<num_respostas;i++)
		{
		if(document.forms[formulario].opcao[i].checked)
			{
			resposta = i;
			if(respostas)
			{
				respostas=respostas + "&";
			}
			else
			{
				respostas=respostas + "?";
			}
			respostas=respostas + "opcao=" + document.forms[formulario].opcao[i].value;
		}
	}
	if(resposta==num_respostas)
	{
	alert("Uma opÃ§Ã£o deve ser escolhida!");
	}
	else
	{
	Abre("http://www.enquetes.com.br/enquete.asp" + respostas,400,280);
	}
}

/***menu***/
	$(document).ready( function() {
		$('dl#nav-menu > dd > a').click(function() {
			$(this).next().slideToggle();
		});
	});
	
/***light box cadastro***/
  function toggleDiv(divid){
    if(document.getElementById(divid).style.display == 'none'){
      document.getElementById(divid).style.display = 'block';
    }else{
      document.getElementById(divid).style.display = 'none';
    }
  }
  
/***centraliza light box***/
 function centraliza_objeto(oObj)
{  
    //var altura  = document.body.scrollTop+(document.body.clientHeight/2);    
    //var altura  = (document.documentElement.scrollTop/2)+(document.body.clientHeight/2);
    var largura = document.body.scrollLeft+(document.body.clientWidth/2);    
    //var alturaLayer  = oObj.clientHeight/2;    
    var larguraLayer = oObj.clientWidth/2;     
    
    oObj.style.position="fixed";
    
    //var valorTop = altura - alturaLayer;
    var valorTop = 10;
    var valorLeft = largura - larguraLayer;
    
    if (valorTop < 1) {
       valorTop = 1;
    }

    oObj.style.top  = valorTop+"px";
    oObj.style.left = valorLeft+"px";
}















// TOOL TIP//









// qTip - CSS Tool Tips - by Craig Erskine
// http://qrayg.com
//
// Multi-tag support by James Crooke
// http://www.cj-design.com
//
// Inspired by code from Travis Beckham
// http://www.squidfingers.com | http://www.podlob.com
//
// Copyright (c) 2006 Craig Erskine
// Permission is granted to copy, distribute and/or modify this document
// under the terms of the GNU Free Documentation License, Version 1.3
// or any later version published by the Free Software Foundation;
// with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
// A copy of the license is included in the section entitled "GNU
// Free Documentation License".

var qTipTag = "a,label,input"; //Which tag do you want to qTip-ize? Keep it lowercase!//
var qTipX = 0; //This is qTip's X offset//
var qTipY = 15; //This is qTip's Y offset//

//There's No need to edit anything below this line//
tooltip = {
  name : "qTip",
  offsetX : qTipX,
  offsetY : qTipY,
  tip : null
}

tooltip.init = function () {
	var tipNameSpaceURI = "http://www.w3.org/1999/xhtml";
	if(!tipContainerID){ var tipContainerID = "qTip";}
	var tipContainer = document.getElementById(tipContainerID);

	if(!tipContainer) {
	  tipContainer = document.createElementNS ? document.createElementNS(tipNameSpaceURI, "div") : document.createElement("div");
		tipContainer.setAttribute("id", tipContainerID);
	  document.getElementsByTagName("body").item(0).appendChild(tipContainer);
	}

	if (!document.getElementById) return;
	this.tip = document.getElementById (this.name);
	if (this.tip) document.onmousemove = function (evt) {tooltip.move (evt)};

	var a, sTitle, elements;
	
	var elementList = qTipTag.split(",");
	for(var j = 0; j < elementList.length; j++)
	{	
		elements = document.getElementsByTagName(elementList[j]);
		if(elements)
		{
			for (var i = 0; i < elements.length; i ++)
			{
				a = elements[i];
				sTitle = a.getAttribute("title");				
				if(sTitle)
				{
					a.setAttribute("tiptitle", sTitle);
					a.removeAttribute("title");
					a.removeAttribute("alt");
					a.onmouseover = function() {tooltip.show(this.getAttribute('tiptitle'))};
					a.onmouseout = function() {tooltip.hide()};
				}
			}
		}
	}
}

tooltip.move = function (evt) {
	var x=0, y=0;
	if (document.all) {//IE
		x = (document.documentElement && document.documentElement.scrollLeft) ? document.documentElement.scrollLeft : document.body.scrollLeft;
		y = (document.documentElement && document.documentElement.scrollTop) ? document.documentElement.scrollTop : document.body.scrollTop;
		x += window.event.clientX;
		y += window.event.clientY;
		
	} else {//Good Browsers
		x = evt.pageX;
		y = evt.pageY;
	}
	this.tip.style.left = (x + this.offsetX) + "px";
	this.tip.style.top = (y + this.offsetY) + "px";
}

tooltip.show = function (text) {
	if (!this.tip) return;
	this.tip.innerHTML = text;
	this.tip.style.display = "block";
}

tooltip.hide = function () {
	if (!this.tip) return;
	this.tip.innerHTML = "";
	this.tip.style.display = "none";
}

window.onload = function () {
	tooltip.init ();
}