// top left nav fading bullshit



$(document).ready(function(){
							$("#topLeftNav").fadeTo( 0, 0 );
						   //$("#topLeftNav").fadeTo("fast", 0); // This sets the opacity of the thumbs to fade down to 0% when the page loads
						   $("#topLeftNav").hover(function(){
						   $(this).fadeTo("fast", 1.0);
						   $("#enterfade").fadeTo("fast", 0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 0);
						   $("#enterfade").fadeTo("fast", 1.0); // This should set the opacity back to 0% on mouseout
							   	});
						   });

$(document).ready(function(){
							$("#pont").fadeTo( 0, 0 );
						   //$("#topLeftNav").fadeTo("fast", 0); // This sets the opacity of the thumbs to fade down to 0% when the page loads
						   $("#point").hover(function(){
						   $(this).fadeTo("fast", 1.0);
						   $("#fade").fadeTo("fast", 0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 0);
						   $("#fade").fadeTo("fast", 1.0); // This should set the opacity back to 0% on mouseout
							   	});
						   });
