$(document).ready(function(){
	$('.history-toggle-link').click(function(){
		$(this).parent().parent().find('.history-content-intro').slideToggle('fast');
		$(this).parent().parent().find('.history-content-expand').slideToggle('fast');
		$(this).find('.roll-up img').addClass('pngfix');
		$(this).find('span').toggle();
	});
	
	$('#navigation-bottom li').last().css('border', 0);
	$('label[for="profile_avatar"]').nextAll('div').css('margin-bottom', '10px');

	$('#sidebar-login-form').find('label[for="signin_username"]').addClass('short');
	$('#sidebar-login-form').find('label[for="signin_password"]').addClass('short');
	$('label[for="register_file"]').css({ 'width' : '100%', 'margin-bottom' : '5px' });
	$('label[for="register_avatar"]').css({ 'width' : '100%', 'margin-bottom' : '5px' });
});

function inputDefaultValues(inputId) {
	$(inputId).focus(function(){
		if ($(this).val() == $(this).attr('defaultValue')) $(this).val('');
	});

	$(inputId).blur(function(){
		if ($(this).val() == '') $(this).val($(this).attr('defaultValue'));
	});
}
