// JavaScript Document
$(document).ready(function(){

	/* Script to Change Navigation Font to Futura */
	Cufon.replace('#content h1');
	Cufon.replace('#content h2');
	Cufon.replace('#sidebar h2');

/* Clear out Text Fields dynamically */
	if ($('.focus-blur').length > 0){
			$('.focus-blur').valueFx();
	}

	$('#navigation li:first').addClass('first');
	$('#navigation li:last').addClass('last');
	
	$('.email').mailto();
	
	
    //Comments hint box
    $('#commentsform #rules-toggle').show(0);
    $('#commentsform .comment-rules').hide(0);
    $('#commentsform #rules-toggle a').toggle(
    	function(){
    		$('#commentsform #rules-toggle a').html("hide" );
    		$('#commentsform .comment-rules').stop(true,true).slideDown(140);
    		return false;
    	},
    	function(){
    		$('#commentsform #rules-toggle a').html("show allowed tags" );
    		$('#commentsform .comment-rules').stop(true,true).slideUp(130);
    		return false;
    	}
    );
});