$(document).ready(function(){
	
	
	/*
	 * Inline Field
	 */
	$("label.inField").click(function(){
		w = $(this).width() + 10;
		$(this).animate({left: '-'+w+'px'}, 100);
	});
	$("input.inField").blur(function(){
		if ( $(this).val()=='' ) {
			//$(this).prev().fadeIn();
			
			w = $(this).prev().width() + 10;
			$(this).prev().animate({left:'10px'}, 100);
			
		}
	});
	$("input.inField").focus(function(){
		//$(this).prev().fadeOut();
		w = $(this).prev().width() + 10;
		$(this).prev().animate({left: '-'+w+'px'}, 100);
	});
	
	if ( $("input.inField").length>0 ) {
		$("input.inField").each(function(){
			if ( $(this).val()!='' ) {
				w = $(this).prev().width() + 10;
				$(this).prev().animate({left: '-'+w+'px'}, 100);
			}
		});
	}

	
});
