

	//	#####################################
	//	BIG SCREEN
	
		function openBigScreen(image)
		{
			Effect.ScrollTo('bigScreen_ancor');
			
			if ( $('bigScreen').style.display == 'none' )
			{
				Effect.BlindDown('bigScreen', { duration: 1.0 });
			}

		}
		
		function closeBigScreen()
		{
			Effect.BlindUp('bigScreen', { duration: 1.0 });
		}
		
		
	//	#####################################
	//	CARBON SCRIPT - CS
	
		var cs			= new Array();
			cs.busy		= 0;

		function cs_navigation(id)
		{
			//	stop
				if ( cs.busy == 1 ) { return; }
			
			//	busy
				cs.busy = 1;
				$('cs_button_' + id).className = 'item busy';

    		//	get content
	    		new Ajax.Request('?id=' + id + '&template=27',
	    		{
	    		    method:'get',
	    		    onFailure: function(){ alert('Ett nŠtverksfel uppstod'); return; },
	    			onSuccess: function(transport)
	    	    	{
	    				var response = transport.responseText || "no response text";
	    				
						//	error
							if ( response == 'no response text' ) { alert('wow');cs_navigation(id); return; }
	
		    			//	publish
		    				$('cs_container').innerHTML = response;
		    				
		    			//	finish
		    				cs.busy = 0;
	    			}
	    		});
		}

