var tip = $('#username_check').text();

function tipTop(e) {
	$theinput = $(e.target);
	$('.tip').fadeOut(100);
	var $thetip = $(e.target).parent().children('.tip');
	if($thetip.is(':hidden')) $thetip.fadeIn(300);		
}

/*----------------------------------------------------------------------
And go...
---------------------------------------------------------------------- */
jQuery(function() {
	
	//jQuery.easing.def = "easeInQuad";  	
  	// Form tips
  	$(":input").focus(tipTop);
	
	// Username checker
	$('input#username').keyup( function() {
		var un = $(this).val();
		if( un.length > 3 ) {
			$('#username_check').load('ajax/check_username', { a: 1, username: un });			
		} else {
			$('#username_check').text(tip);
		}	
	});
	
	// Flag insert
	$('select#country').change( function() {
		var c = $(this).val().toLowerCase();
		$(this).next('img').attr('src', 'assets/img/flags/'+c+'.png').show();
	});
	
	jQuery("div#banner").codaSlider();

  	});