// JavaScript Document
$.fn.slideBgnd=function(w,t,s){
	if (w==null)  w= $(this).innerWidth()/2;
	if (!t)  t= 200;
	$(this).animate(
					{backgroundPosition: w},
					t,
					"swing"
					);
}
