jQuery(document).ready(function($) {
				$('input.kontakt').focus( function() {
					$(this).parent().addClass('active');
					if ( jQuery.browser.webkit || jQuery.browser.msie ) {
						$(this).animate({'background-position-y' : '-21px'}, 0, 'linear');
					} else {
						$(this).animate({'background-position' : '0 -21px'}, 0, 'linear');
					}
				});
				$('input.kontakt').blur( function() {
					$(this).parent().removeClass('active');
					if ( jQuery.browser.webkit || jQuery.browser.msie ) {
						$(this).animate({'background-position-y' : '0'}, 0, 'linear');
					} else {
						$(this).animate({'background-position' : '0 0'}, 0, 'linear');
					}
				});
				
			});

