function hoverClass(e){
	$(e).hover(function(){
		$(this).addClass('hover')
	}, function(){
		$(this).removeClass('hover')	
	})
}

$(document).ready(function() {
	hoverClass('#navigation > ul > li');
});


// DD_belatedPNG fix for IE6
if (typeof DD_belatedPNG !== 'undefined') {
	var PNG_fix_selectors = [
		'selector-1',
		'selector-2'
	];
	DD_belatedPNG.fix(PNG_fix_selectors.join(','));
}
