// JavaScript Document
$(document).ready(function() {
	$("#Navigation LI").each(function(){
		$(this).prepend("<span class='tl'>&nbsp;</span>").append("<span class='tr'>&nbsp;</span>")
	});

	$("UL").each(function() {
		$(this).children("LI:first").addClass("First");
		$(this).children("LI:last").addClass("Last");
	});
});
