$(function(){
	// on hover top nav
	$('#nav li, #bottom_nav li').hover(		
		function(event){
			// over
			$(this).attr("class", "orange_box");
		},
		function(event){
			// out
			$(this).attr("class", " ");
		}
	);
});

