
$(document).ready( function(){

	$('#topImage').hover( function(){ $(this).fadeOut() } );
	$('#bottomImageX').load( function(){ 
		var bw = $('#bottomImage').width();
		$('#gallery').css( 'width',bw);
	} );
	$('#bottomImage').mouseout( function(){ $('#topImage').fadeIn() } );
	$('#fader').fadeIn();
});

