$(document).ready(function(){

	$(".fbox").click(function(){
			$(this).val("");
			$(this).addClass("cblack");
			//$(this).addClass("fboxchange");
			

			var $oldPassword = $("#pwd");
			var $newPassword = $("<input type='password' />")
								  .appendTo($oldPassword.parent());
			$oldPassword.remove();
			$newPassword.attr('id','pwd');
			$newPassword.attr('class','password fbox cblack fboxchange');
			$newPassword.attr('name','pwd');
	
	});
	

	
  
  /*$('#menu-main-menu li.current-menu-item a').parent().css('background-image', 'url(/prototypes/images/nav-arrow.jpg)');
  $('#menu-main-menu li.current-menu-item a').parent().css('background-position', 'bottom center');
  $('#menu-main-menu li.current-menu-item a').parent().css('background-repeat', 'no-repeat');*/
  
	/*var Coladj = $('#Content-Right-Inner').height() + ($('#Content-Left-Inner').height() - $('#Content-Right-Inner').height());
	
	/*alert($('#Content-Left-Inner').height());
	alert($('#Content-Right-Inner').height());
	
	alert(Coladj);
	
	$('#Content-Right-Inner').height(Coladj);*/


});

