$(document).ready(function(){

	jQuery.extend(jQuery.easing, {
		swap1: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
			}
		});
		
	// text inputs hints
	$(".text_hint[value!=]")
		.each(function(){this.hint=this.value})
		.bind("focus",function(){if(this.hint==this.value){$(this).attr("value","").removeClass("text_hint")}})
		.bind("blur",function(){if(this.value==""){	$(this).attr("value",this.hint).addClass("text_hint")}})
	
	
});
