function showGridStripSWF() {
	var thumbWidth = 560 / 7;
	var thumbZoom = thumbWidth + 40;
	
	var flashvars = {
						grid_thumbwidth: thumbWidth,
						grid_thumbzoom: thumbZoom,
						grid_tintcolor: 'A9CA27',
						grid_feed: 'http://www.todaycreate.com/grid-xml-header',
						do_resize: 'false',
						grid_ground: '1d1d1d'
	};
	var params = {
					menu: 'false', 
					allowfullscreen: 'false',
					quality: 'high',
					scale: 'noscale',
					salign: 'tl',
					bgcolor: '#101010'
				 };
	var attributes = {
					id:'gridStripSWF'
				 };
	swfobject.embedSWF("/wp-content/themes/today_create/grid.swf", "gridStrip", "560", thumbWidth.toString(), "9.0.45", false, flashvars, params, attributes);
}

window.addEvent('domready', function(){
	if(swfobject.hasFlashPlayerVersion('9.0.45')) {
		showGridStripSWF();
	} else {
		$('gridStripHolder').setStyle('display', 'none');
	}
})