
$(document).ready(function() {
	$('.country .current').hover(function() {
		$(this).parent().find('li').each(function(i,o) {
			$(this).show();
		})
	},function() {
		
	})
	
	
	$('.country').hover(function() {
		
	},function() {
		$(this).find('li').each(function(i,o) {
			$(this).hide();
		})
	})
	
	
	
	// contact
	$('#contactform textarea,#contactform input').focus(function() {
		$(this).addClass('focus');
	})
	$('#contactform input,#contactform textarea').blur(function() {
		$(this).removeClass('focus');
	})
});
function helpdesk() {
	window.open('helpdesk', 'atendimento', 'status=yes,height=400,width=700,top='+(window.screen.height/2-400/2)+',left='+(window.screen.width/2-700/2)); 
}


function popup(end,npop,larg,alt) {
	window.open(end, npop, 'status=yes,height='+alt+',width='+larg+',top='+(window.screen.height/2-alt/2)+',left='+(window.screen.width/2-larg/2));
}

