// png fix ie 6



$(function() {
$('#logo, #apDiv1').hide();

$('#logo, #apDiv1').fadeIn(2000);

$('#menu a, #footer a').each(function() {
									  
									  var href = this.href;
									  
									  this.href = 'javascript: customFadeOut("'+href+'");' ;
									  
									  });

});

function customFadeOut(url) {
	
	$('#logo, #apDiv1').fadeOut('fast', function() {location.href = url;});
	
}

