/***************************************************************************************************
* Name:          ribbon.js
* Author:        Kyle Brickman
* Description:   Ribbon support
* Created:       11 November 2009
* Prerequisites: Prototype     (1.6.0.3+)
*                Scriptaculous (1.8.2+)
***************************************************************************************************/

document.observe( 'dom:loaded', function ( ){
	$$( '.layRibbon' ).each( function( item ){
		if( document.viewport.getWidth( ) > 950 )
			item.style.width = (( document.viewport.getWidth( ) - 950 ) / 2 ) + 'px';
		else
			item.style.width = '44px';
		
		item.style.display = '';
		
		Event.observe( window, 'resize', function( ){
			$$( '.layRibbon' ).each( function( item ){
				if( document.viewport.getWidth( ) > 950 )
					item.style.width = (( document.viewport.getWidth( ) - 950 ) / 2 ) + 'px';
				else
					item.style.width = '44px';
			});
		});
	});
});

