// JavaScript Document

$(document).ready(function() {
	//Automatically fill in some form fields
	$('input.addText').each(function() {
		if($(this).val() == '') {
			$(this).val($(this).attr('title'));	
		}

		$(this).focus(function() {
			$(this).addClass('focused');
			if($(this).val() == $(this).attr('title')) {
				$(this).val('');	
			}
		});

		$(this).blur(function() {
			$(this).removeClass('focused');
			if($(this).val() == '') {
				$(this).val($(this).attr('title'));	
			}
		});			 
	});
	//End filling in forms fields
	
	// Personal Calendar Export slider
	$('#cal-options').hide().css({'position':'absolute', 'top':'12px', 'left':'7px'});
	$('#add-cal a').click(function(){
		$('#cal-options').slideToggle('normal');
		return false;
	});
	$('body').click(function(){
		$('#cal-options').slideUp('normal');
	});
});