$(document).ready(function() {

	$('#nav').droppy();

	$('form#login input#username').focus();

	// add WYSIWYG editor to textareas
	$('textarea.rte').fck({path: '/fck/', toolbar: 'Basic', height: 300, width: 600});

	$('a.external').click(function(e) {
		e.preventDefault();
		window.open(this.href);
	});

	$('a.document').click(function(e) {
		e.preventDefault();
		window.open(this.href);
	});

	$('div.img_right img').load(function() {
		$(this).siblings('p').css('max-width', $(this).width());
	});

	// CHAR COUNTDOWN FOR GIFT-NOTE
	$('textarea#body').keyup(function() {
		var max_len = 2500;
		if (this.value.length > max_len) {
			this.value = this.value.substring(0, max_len);
		}
		$('input#mcount').val(max_len - this.value.length);
	});

});

