$(document).ready(function()
{
	// Drop down.
	$('#topArea a.drop').click(function(e)
	{
		e.preventDefault();
		
		$('#topArea .options').toggleClass('visible');
	});
});