var $jq = jQuery.noConflict();

$jq(document).ready(function($) {
	
	$('#erben-form input[type=checkbox][name=sex]').parent().addClass('sex');
	$('#erben-form #erben-form-funktion').parent().addClass('select');
	$('#side-menu .last').removeClass();
	
	$('.top-login-input input, .top-login-password input').each(function() {	
		var VALUE = $(this).attr('value');
		
		$(this).focus(function() {
		 	if ($(this).attr('value') == VALUE)
				$(this).attr('value', '');
		});
		
		$(this).blur(function() {
		 	if ($(this).attr('value') == '')
				$(this).attr('value', VALUE);
		});
	});
	
});
