jQuery(document).ready(function($){
	// Search field
	$("#s").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
			$("#sform").removeClass('empty');
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
			$("#sform").addClass('empty');
		}
	});
	$("#KEmail").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});
	$(".search-reset > img").click(function () {
		$("#s").val("");
		$("#s").focus();
	});
	// Tabs
	$('#login-area > ul').tabs();
	// stripped tables
	$("tr:nth-child(odd)").addClass("odd");
});