$(function(){ neatUpHtml(); idfyCurrentPage(); });
function neatUpHtml(){
	$.each( $('ul'), function(){
		$(this).find('li:first').addClass('first');
		$(this).find('li:last').addClass('last');
	});
}
function idfyCurrentPage(){
	var location = window.location+'';
	var locationArr = location.split('/');
	$('input[type=button], input[type=submit], input[type=reset]').hover(function(){ $(this).addClass('hover'); },function(){ $(this).removeClass('hover'); });
	$('a, input[type=button], input[type=submit], input[type=reset]').focus(function(){ $(this).addClass('focus'); }).blur(function(){ $(this).removeClass('focus'); });
	$('a[href='+location+']').addClass('current');
	$('a[href='+locationArr[locationArr.length-1]+']').addClass('current');
	
}// JavaScript Document
