$( document ).ready( function(){

	$(document).pngFix( );

	$('#navigation li').hover(
		function(){
			$( this ).find('ul').show();
		},
		function(){
			$( this ).find('ul').hide();
		}
	);
});