function imgHover(img, bool){
	if(bool){
		img.style.top = '-1px';
	}else{
		img.style.top = '0px';
	}
}
