$(document).ready(function(){

	// Get the source directory of this script
	root = $('script[@src$=jquery-1.2.6.min.js]').attr('src').replace('js/jquery-1.2.6.min.js', '');
	if(!location.href.match('www')){ root = root.replace('www.', ''); }
	
	initForms();
});

// Make forms submittable
function initForms(){
	if($('form').length){
		$('form a.submit').click(function(){
			$(this).parents('form').eq(0).submit();
		});
	}
	
	$('#openid_identifier').focus(function(){
		if($(this).val() == 'username'){
			$(this).val('');
		}
	});
	
	$('#openid_identifier').blur(function(){
		if($(this).val() == ''){
			$(this).val('username');
		}
	});
	
	
	$('#loginform').submit(function(){
		$(this).hide('slow');
		$(this).next().show('slow');
		return true;
	});
}

