/**
 * EZcontact
 * javascript
 * 
 * (c) EZdesign.de
 *
 * Author:   Timo Besenreuther
 * Created:  2009-04-20
 * Modified: 2009-04-20
 */


$(document).ready(function() {
	$('#ezcontactForm textarea.growing').growingTextarea();
	
	$('#ezcontactForm input, #ezcontactForm textarea').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	}).focus(function() {
		$(this).addClass('focused');
	}).blur(function() {
		$(this).removeClass('focused');
	});
});