$(document).ready(function(){
	
	$('#registration-link').hover(showRegisterPopUp, hideRegisterPopUp);
	
	
});

function showRegisterPopUp () {
	//var x = $('#registration-link').position().left + 'px';
	//var y = $('#registration-link').position().top + 'px';
	
	//$('#registration-popup').css( { 
   //      left: x, 
    //     bottom: y
	//} );

	
	$('#registration-popup').removeClass('hidden');
}

function hideRegisterPopUp () {
	$('#registration-popup').addClass('hidden');
}
