$(document).ready(function(){
	$('.navigation li').hover(
		function(){ $(this).find('.subnav').show(); $(this).addClass('hover'); },
		function(){ $(this).find('.subnav').hide(); $(this).removeClass('hover'); }
	);
})