$(function() { 
	$('form input[@type=text]').blur(function() { 
		$(this).removeClass('box_username_over');
		$(this).addClass('box_username');  
	});
	$('form input[@type=text]').focus(function() { 
		$(this).removeClass('box_username');
		$(this).addClass('box_username_over');  
	});
	$('form input[@type=password]').blur(function() { 
		$(this).removeClass('box_username_over');
		$(this).addClass('box_username');  
	});
	$('form input[@type=password]').focus(function() { 
		$(this).removeClass('box_username');
		$(this).addClass('box_username_over');  
	});
	$('form input[@type=file]').blur(function() { 
		$(this).removeClass('box_username_over');
		$(this).addClass('box_username');  
	});
	$('form input[@type=file]').focus(function() { 
		$(this).removeClass('box_username');
		$(this).addClass('box_username_over');  
	});
	$('form textarea').blur(function() { 
		$(this).removeClass('text_area_over');
		$(this).addClass('text_area');  
	});
	
	$('form textarea').focus(function() { 
		$(this).removeClass('text_area');
		$(this).addClass('text_area_over');  
	});
	$("form input[@type=image].butsend").hover(function(){
   	$(this).addClass("butsend_over");
 	},function(){
   	$(this).addClass("butsend");
	});	
});