function pwdFocus() {
    $('#fakepassword').hide();
    $('#password').show();
    $('#password').focus();
	$('#password').val('');
}

function pwdBlur() {
    if ($('#password').val() == '') {
        $('#password').hide();
        $('#fakepassword').show();
    }
}

$(document).ready(function(){
	if ($('div.img-title').length) {
		$('h1').css('width','310px');
	}
});
