jQuery(document).ready(function($){

	//Sidebar form setup
	function setupFormField(id,value){
		$('#'+id).val(value).focus(function(){
			if( $(this).val() == value)
				$(this).val('');
		}).blur(function(){
			if( $(this).val() == '')
				$(this).val(value);
		});
	}	
	setupFormField('phrase','Search this site...');
	setupFormField('field-first-name','First Name');
	setupFormField('field-last-name','Last Name');
	setupFormField('field-email','Email');
	setupFormField('field-comments','Comments');
	
	//Primary form setup
	$('#other-category-container').hide();
	$('#category').change(function(){
		if( $(this).val() == 'Other' )
			$('#other-category-container').slideDown('fast').children('#other-category').focus();
		else
			$('#other-category-container').slideUp('fast').val('');
	});
	$('#other-interest-container').hide();
	$('#interest').change(function(){
		if( $(this).val() == 'Other' )
			$('#other-interest-container').slideDown('fast').children('#other-interest').focus();
		else
			$('#other-interest-container').slideUp('fast').val('');
	});
	
	//Feature cycle
	$('#rotation').cycle({
		fx:'fade',
		timeout:8000
	});
	
});