$(function(){
	$('#left .navigation li:eq(0)').addClass('first');
	$('#left .navigation li.selected').next('li').addClass('next');

	if ($.browser.msie && $.browser.version < 7){
		$('#right .links li:has(ul)').hover(function(){	$(this).addClass('hover'); }, function(){ $(this).removeClass('hover'); });
	}

	$("input.default-value").focus(function() {
    	if (this.value == this.defaultValue) {
    		this.value = '';
		}
    }).blur(function() {
      	if (this.value == '') {
        	this.value = this.defaultValue;
      	}
    });
	/* PDF Tracking */
	$('a[href$=".pdf"]').click(function(){
		var url = this.href;
		if (window.pageTracker) {
			pageTracker._trackPageview(url);
		}
	});
});