$(document).ready(function() {

	$("#menu .sub").hover(function() {
		$(this).children("ul.fly_out").attr('style', 'left: 120px');
	}, function() {
		$(this).children("ul.fly_out").attr('style', 'left: -9999px');
	});
	
});
