window.addEvent( 'domready', function()
{

	(function(){
	
		$('number').fx = new Fx.Morph( 'number', { 'duration' : 1500, transition: Fx.Transitions.Quart.easeOut } );
		newWidth = ( ( window.getSize().x / 2 ) - ( ( 960 / 2 ) - 320 ) );
		if ( newWidth < 320 ) {
			newWidth = 320;
		}
		$('number').fx.start({
			width : newWidth
		});
		window.addEvent( 'resize', function() {
		newWidth = ( ( window.getSize().x / 2 ) - ( ( 960 / 2 ) - 320 ) );
		if ( newWidth < 320 ) {
			newWidth = 320;
		}
			$('number').fx.start({
				width : newWidth
			});
		});
		
   	}).delay(500, this);
	
	var odd = true;	
	$$('.oddeven tr').each( function(item,index){
		if ( odd ) {		
			odd = false;			
			item.setStyle( 'background', '#cccccc' );		
		} else {		
			odd = true;			
		}
	
	});
		
});
