

// start the cufon replacement
Cufon.replace('h2');

$(document).ready(function(){

	$('#navigation > ul > li').hover(
		function(){
			$(this).addClass('active');
			$('>a',$(this)).addClass('active');
		},
		function(){
			$(this).removeClass('active');
			$('>a',$(this)).removeClass('active');
		}
	);
	
	if(typeof DD_belatedPNG != 'undefined'){
		DD_belatedPNG.fix('#header');
	}
	
});

