$(document).ready(function() {
	
	ContentHeight = $('.content').height();
	SidebarHeight = $('.sidebar').height();
	
	if (SidebarHeight < ContentHeight) { $('.sidebar').height(ContentHeight)};
	
	$('input[type="text"], input[type="password"]').focus(function() {
		$(this).attr("value","");
	});
	
		
});
