$(document).ready(function(){
	$('#navbar a:first').css('margin-top', '8px');
	$('#navbar a:last').css('padding-right', '20px');

	$('#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);
		}
	});

	$('#fade').innerfade({
		speed: 'slow',
		timeout: 5000,
		type: 'sequence',
		containerheight: '116px'
	});
	
	if ($.browser.msie && $.browser.version.substr(0,1)<7) {
		$('#content').attr('id', 'nothing');
	};
	
	$('.showLetter').next().css('display', 'none');
	$('.showLetter').toggle(function(){
		$(this).next().slideDown('slow');
	},function(){
		$(this).next().slideUp('fast');	
	});
});
