// JavaScript Document

function init(){
	button = document.getElementById("member_login");
	button.onmouseover = function(){
		button.style.backgroundPosition = "0 -29px";
		document.body.style.cursor= 'pointer';
	}

	button.onmouseout = function(){
		button.style.backgroundPosition = "0 0";
		document.body.style.cursor= 'default';
	}
	
	button.onclick = function(){
		window.location = "http://www.thefranklinclub.ca/member_area/"
	}
}
