$(document).ready(function(){
	
	// Sidebar-right height
	$('#sidebar-right').height($('#content_and_sidebars').height());
	
	sinit = $('#sword').val();
	
	$('#sword').focus(function() {
		if($('#sword').val()==sinit) {
			$('#sword').val('');
		}
	});
	
	$('#sword').blur(function() {
		if($('#sword').val()=='') {
			$('#sword').val(sinit);
		}
	})
	
});