$(document).ready(function() 
{
	show_info(0);
});

function show_info(id)
{
	for ( i=0; i<7; i++)
	{
		$('#div'+i).hide();
	}
	$('#div'+id).show();
	$('#index_contacts').show();
	
	if (id==0)
	{
		$('#div0').css('width','864px');
		$('#index_contacts').hide();
	}
}
