// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

// var $j = jQuery.noConflict();

$(function() {
	$( '.notice, .errorExplanation' ).each( function() { 
		$(this).click( function() { 
			$(this).hide(); 
		}) 
	});
});

function show_introduction_world() {
	$( '#world_splash' ).hide( 200 );
	$( '#world_splash_description' ).show( 200 );
	//$( '#world_splash_description' ).click( function() {
	//	$( '#world_splash_description' ).hide( 200 );
	//	$( '#world_splash' ).show( 200 );
	//}).mouseover( function() {
	//	$(this).css( 'cursor', 'pointer' );
	//});
}

function close_introduction() {
	$( '#world_splash_description' ).hide( 200 );
	$( '#world_splash' ).show( 200 );
}