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

