var mw = {
	init : function(){
		mw.camposForm();
	},
	camposForm : function(){$('input[type="text"]').focus(function(){ if(this.value == this.defaultValue){ this.value = '';}if(this.value != this.defaultValue){ this.select();}}).blur(function(){if ($.trim(this.value) == ''){this.value = (this.defaultValue ? this.defaultValue : '');}});	},
	popup : function(url,largura,altura){ var posEsq = (screen.width - largura) / 2, posDir = (screen.height - altura) / 2; window.open(url,"IESDEKIDS",'height=' + altura + ',width=' + largura + ',top=' + posDir + ',left=' + posEsq + ',status=no,scrollbars=1');}
}

// e que o jogo comece
$(document).ready(function() {
  mw.init(); 
  $('#jogosEducacionais').click(function(){ mw.popup(this.href,500,600); return false;});
  $('#listaVideos li').each(function(){$(this).bind('click',function(){$('#listaVideos li').removeClass('ativo');$(this).addClass('ativo');$('#videos').find('div').hide();$('#videos').find('div:eq('+ $(this).index() +')').show();return false;})});
  $('.pergunta').click(function(){$('.resposta').hide();$(this).next().show();return false;});
  $('.abas li').click(function(){$('.abas li').removeClass('ativo'); $(this).addClass('ativo'); $('.contAba div').hide(); $('.contAba').find('div:eq('+$(this).index()+')').show(); return false });
  $('#cadastrador').change(function(){$(this).attr('checked')?$('#formCadastrado').show().next().hide():$('#naoCadastrado').show().prev().hide();});
  
// andre
	$(".compartilhe").hover(function(){
		$("#compartilhe").css("display","block");
	},function(){
		$("#compartilhe").css("display","none");
	});
});

