﻿/* UI scripts that appear on all or almost every page */
// Uses http://jQuery.com
// Only bind these functions once document has loaded
$(function(){
	
	if(location.hash == '#signin')
	{
		$('#popupLogin').show();
	}
	
	if(!$('body').hasClass('join')) // 
	{
		// Popup Login
		$('#mainnav-signin a').toggle(
			function(){
				$('#popupLogin').show();
			},
			function(){
				$('#popupLogin').hide();
			}
		);
	}
	

    
    
});
