// JavaScript Document
$(document).ready(function() {
	$(".navblock").hover(function() {
		$(this).children(".navblock_highlight").addClass("highlighted");
	}, function() {
		$(this).children(".navblock_highlight").removeClass("highlighted");	
	});
						   
});
