function ShowHide(id) {
	
	$('.box').hide();
	$(id).show();

$('#btHome').mouseover(function() {
$(id).fadeOut('slow');
$('#Home').fadeIn('slow');
});

$('#btHome').mouseout(function() {
$('#Home').fadeOut('fast');
$(id).fadeIn('fast');
});
 
$('#btWeb').mouseover(function() {
$(id).fadeOut('slow');
$('#Web').fadeIn('slow');
});

$('#btWeb').mouseout(function() {
$('#Web').fadeOut('fast');
$(id).fadeIn('fast');
});

$('#btSMS').mouseover(function() {
$(id).fadeOut('slow');
$('#SMS').fadeIn('slow');
});

$('#btSMS').mouseout(function() {
$('#SMS').fadeOut('fast');
$(id).fadeIn('fast');
});

$('#btGIS').mouseover(function() {
$(id).fadeOut('slow');
$('#GIS').fadeIn('slow');
});

$('#btGIS').mouseout(function() {
$('#GIS').fadeOut('fast');
$(id).fadeIn('fast');
});

$('#btContact').mouseover(function() {
$(id).fadeOut('slow');
$('#Contact').fadeIn('slow');
});

$('#btContact').mouseout(function() {
$('#Contact').fadeOut('fast');
$(id).fadeIn('fast');
});

}