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