// JavaScript Document
$(document).ready(function(){
	
	$("#login_form form input").focus(function(){$(this).val('')});
	
	$("#login_form form input").keypress(function(e){
		if (e.which==13)
			$(this).parent().submit();
	});
	$("#login_form form .submit").click(function(){$(this).parent().submit(); return false;});
	
	// replace "href" attribute in content links to apply lytebox functionallity
	$("div.content a[rel='lytebox']").each(function(){
		$(this).attr("href",$(this).attr("name"));
	});
	
});

