$(function(){
  $('.classmate-area-login input').focus(function(){
    if($(this).hasClass('inactive')){
      $(this).val('').removeClass('inactive');
    }
  }).focusout(function(){
    if($(this).val() == ''){
      $(this).val('Usuário').addClass('inactive')
    }
  });
  $('.360').click(function(){
	window.open($(this).attr('href'), "tour360", "location=0,status=0,scrollbars=0,  width="+$(window).width()+",height="+$(window).height());
	return false;
  })
});

