// JavaScript Document

$(document).ready(
	function()
	{
	    $(".crossing .current").hover(function()
	    {
	        $(".sites-list").show().hover(function()
	        {
	            $(this).show()
	        }, function()
	        {
	            $(this).hide();
	        });
	    }, function()
	    {
	        $(".sites-list").hide();
	    });
	});
