jQuery(function(){
	// Current Nav States
	$.getScript('/js/jquery.url.packed.js',function(){
		var $dir = jQuery.url.attr("directory");
		$('#navigation li a').each(function(){
			var $href = $(this).attr('href');
			$href = $href.replace('/index.php','');
			$dir = $dir.replace('/extreme-tour/code/','');
			$dir = $dir.replace('/','');
			if ($dir.indexOf($href) > -1) {
				$(this).addClass('on');
			}
		});
	});
	// Focus & Blur
	$('input.focus-blur').valueFx();
});