$(document).ready(function(){
	init();
	
	$('#contact-us-wrapper #tab-contact-list li').click(function(){
		var idTab = $(this).attr('id');
		$('#contact-us-wrapper #tab-contact-list li').removeClass('current');
		$(this).addClass('current');
		$('#contact-us-wrapper .contacts_content').hide();
		$('#'+idTab+'-content').show();
		return false;
	});
});

function init()
{
	$('#contact-us-wrapper .contacts_content').hide();
	$('#contact-us-wrapper #tab-contact-list li:first').addClass('current');
	var idFirst = $('#tab-contact-list li:first').attr('id');
	$('#'+idFirst+'-content').show();
}

