function DM(param){
	return document.getElementById(param);
}
function init(){
	if(DM('socialicons')){
		var social=DM('socialicons');
		/*if(social.addEventListener){
			social.addEventListener('mouseover', function(){mostrarsocial(true)}, false);
			social.addEventListener('mouseout', function(){mostrarsocial(false)}, false);
		}*/
		if(social.attachEvent) {
			social.attachEvent('onmouseover', function(){mostrarsocial(true)});
			social.attachEvent('onmouseout', function(){mostrarsocial(false)});
		}
	}
}
function mostrarsocial(param){
	var social=DM('socialicons');
	if(param){
		social.style.width=165;
	}
	else {
		social.style.width=55;
	}
}
