$(document).ready( function(){ 
	$('#nav ul li ul').hover(function(){
		$(this).parent().toggleClass('current_page_parent');
	});
});
