jQuery( 'document' ).ready( Upstairs_DocReady );

function Upstairs_DocReady()
{
	// Init lightbox stuff
	jQuery( 'div.gallery-wrapper a' ).lightBox();
	// Coffee morning
	coffee_morning();
}

function coffee_morning()
{
	if ( ! jQuery( '#post-336' ).length ) return;
	var bg_img = jQuery( '#post-336' ).css( 'background-image' );
	jQuery( '#post-336' ).css( 'background-image', 'none' );
	jQuery( '#post-336' ).prepend( '<div id="coffee-ring"></div>' );
}

