var absPath = 'http://'+document.location.hostname;
var relPath = document.location.hostname;
$(document).ready(function() {

	$("#telefone").mask("(99)9999-9999");
	//-----------------------topo------------------------//
	//hide elements
	$("#AccessClient").hide();
	$('#openClient').click(function() {
		$("#AccessClient").slideToggle();
	});		
	$('#openCpanel').click(function() {
		location.href = 'http://terum.com.br/cpanel';
	});		
	$('#openWebmail').click(function() {
		location.href = 'http://terum.com.br/webmail';
	});		
	/*
	$('#mmcoala').click(function() {
		$("#faixa-home").html('<img src="'+absPath+'/templates/images/faixa-coala.jpg" alt="Coalashop.com" />');
		//location.href = 'http://terum.com.br/webmail';
	});		
	*/
	
	
	//--------------------home-Mh------------------------//
	$('.mh li.first').addClass('mh-first');
	$('.ct').hide();
	$('#content-tab1').show();

	$('.mh li').live('click',function()
	{
		$('.mh li').removeClass('mh-first');
		$('.mh li').removeClass('mh-center');
		$('.mh li').removeClass('mh-last');

		$('.ct').hide();

		var p = $(this).attr('id');
		$('#content-'+p).show();
		
		switch(p) {
			case 'tab1':
			$(this).addClass('mh-first');
			break; 
			case 'tab4':
			$(this).addClass('mh-last');
			break; 
			default:
			$(this).addClass('mh-center');
			break;
		}
	});


})

