
$(function(){
	///////////////////////////////////////////// Parts Component
	$(".leftColumnTop li:nth-child(5n)").css("margin-right", "0");
	
	$("input[@type='text'],textarea")
		.focus(function(){
			$(this).addClass("focus");
		})
		
		.blur(function(){
			$(this).removeClass("focus");
		});
});


