$(document).ready(function(){
	DD_belatedPNG.fix('.png');
	$('.navigation A').hover(
		function () {
			$(this).addClass("over");
		}, 
		function () {
			$(this).removeClass("over");
		}
	);
});
