function vIE(){return (navigator.appName=='Microsoft Internet Explorer')?parseFloat((new RegExp("MSIE ([0-9]{1,}[.0-9]{0,})")).exec(navigator.userAgent)[1]):-1;}

function share_panel(panelName) {
	this.name = panelName;
	this.div = (panelName);

	this.show = function() {
		$('#'+panelName).removeClass('hide');
		
		if(vIE() == 6) {
			this.div.top = document.documentElement.scrollTop;
		
		}
		
		return false;
	}
	
	this.hide = function() {
		$('#'+panelName).addClass('hide');
		return false;
	}
}