$(document).ready(function(){

	$("h1").after('<span class="enter"></span>');
	
	$("a.image").mouseover(
    	function () { show_enter(); }
    );
    
    $("h1").mouseover(
    	function () { show_enter(); }
    );
    
 	$("h1").click(
    	function () { document.location.href = '/galleries/index.html'; }
    );
    
    $("span.enter").click(
    	function () { document.location.href = '/galleries/index.html'; }
    );
});

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

function show_enter() {
	$("span.enter").fadeTo("slow",1).fadeTo(3000,0);
}

// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
