/*
Powered by ly200.com		http://www.ly200.com
广州联雅网络科技有限公司		020-83226791
*/

var isIe=(document.all)?true:false;
try{document.execCommand('BackgroundImageCache', false, true);}catch(e){}

function $_(obj){
	return document.getElementById(obj)?document.getElementById(obj):'';
}

function mouse_over_out_img(eventType, obj){//变换图片，如<img src='a_0.jpg' onmouseover="mouse_over_out_img('over', this);" onmouseout="mouse_over_out_img('out', this);">，图片必须以_0和_1规则命名
	var src=obj.src;
	if(eventType=='over'){
		src=src.replace('_0.', '_1.');
	}else{
		src=src.replace('_1.', '_0.');
	}
	obj.src=src;
}















