

	/*
	
	
	
		barnaby
		@these
		beautiful
		lies
		.com

	*/
	




	// _______________________________________________________________________________________________________________________________________________________ Layout

	function layout(){
	
		// From the top

			// Lyrics 
			$( 'span.lyrictitle' ).css( { "margin-left":( 34 + "px" ) } );
			$( 'span.lyric' ).css( { "margin-left":( 6 + "px" ) } );

			// Lyric overlay
			$( '#lyricoverlay' ).css( { "top": ( 736 + "px" ), "left": ( 420 + "px" ), "position":"absolute", "z-index":-20 } );
			$( '#lyricoverlaypoint' ).css( { "top": ( 1612 + "px" ), "left": ( -144 + "px" ), "position":"absolute", "z-index":-21 } );

			// Lyric columns
			$( 'div.lyriccolumn1' ).css( { "left": ( 0 + "px" ), "position":"absolute", "z-index":40 } );
			$( 'div.lyriccolumn2' ).css( { "left": ( 486 + "px" ), "position":"absolute", "z-index":50 } );

			// Chapel
			$( 'div.chapel' ).css( { "left": ( 486 + "px" ), "position":"absolute", "z-index":60 } );
		
	}



	// _______________________________________________________________________________________________________________________________________________________ Resize

	function resize(){
	}
	
	
	
	function clearText( thefield ){

		if( thefield.defaultValue == thefield.value ) thefield.value = "";
	} 
	
	
	// _______________________________________________________________________________________________________________________________________________________ Event handlers
	
	$(document).ready( function(){ layout(); } );
	$(window).resize( function(){ resize(); } );
