$(document).ready(function() {
	
	// LINKS FADING
	$('#header_home li a').append('<span></span>');
	$('#header_home li a span').hide();
	$('#header_home li a').hover(function() {
		$(this).children('span').fadeIn(400);
	}, function() {
		$(this).children('span').fadeOut(400);
	});
	// .LINKS FADING
	
	// forms
	$('input.text,textarea').hover(function(){
		$(this).addClass('hover');
	},
	function(){
		$(this).removeClass('hover');	
	});

	$('input.text,textarea').focus(function() {
		$(this).addClass('focus');
	});
	$('input.text,textarea,select').blur(function() {
		$(this).removeClass('focus');
	});
});


function swip (elementInput, swipFrom, swipTo){
	if (elementInput.value == swipFrom) elementInput.value = swipTo;
}
