function scrollWin(anc,time){  
	if(anc=="#") anc="body";
	target = $(anc);  
	$('html, body').animate({  
		scrollTop: target.offset().top
	}, time);
}  
