function getStyle(ele,attr){
	if(typeof window.getComputedStyle != 'undefined'){
		return window.getComputedStyle(ele,null)[attr];
	}else if(typeof ele.currentStyle != 'undefined'){
		return ele.currentStyle[attr];
	}
}