<!--
$(document).ready(function() {

$(".linkbox").click(function() {
	var e_anchor = this.getElementsByTagName("a");
	window.open(e_anchor[0].href, 'MemberPop', 'width=1000, height=770, menubar=no, toolbar=no, scrollbars=no, resizable=yes');
	return false;
});

$(".linkbox2").click(function() {
	var e_anchor = this.getElementsByTagName("a");
	window.open(e_anchor[0].href, '_self' );
	return false;
});

$("div.linkbox").hover(function(){
	$(this).addClass("box_hover");
	},function(){
	$(this).removeClass("box_hover");
});

$("div.linkbox2").hover(function(){
	$(this).addClass("box_hover2");
	},function(){
	$(this).removeClass("box_hover2");
});

});
-->
