$(document).ready(function(){
	$('#fade').innerfade({
		speed: 'slow',
		timeout: 4000,
		type: 'sequence',
		containerheight: '335px'
	});

	$('#okAll :input').focus(function(){
		if($(this).val() == $(this).attr('rel')){
			$(this).val('');
		}
	}).blur(function(){
		if($(this).val() == ''){
			var atty = $(this).attr('rel');
			$(this).val(atty);
		}
	});
	
	$('#hidden').css('display', 'none');
	
	$('#archives').click(function(){
		$('#hidden').slideToggle('slow');
	});
	
	$('#gallery a').lightBox();
});
