//Determine Calling Page Position
//by the page_position variable
//that should be set prior to entering this script file
//------------------------------------------------------
// Values:
// -1 : Calling from 1 level above script (home page)
//  1 : Calling From Same Level Parrallel Level to Script
//  2 : Calling from One Level Lower than Script
//
var header_flash_path
var header_image_path
var image_path_only
var Tscroll_path_to_files
var page_path
switch(page_position){
	case -1:
		header_flash_path = "Header/header-1up.swf";
		header_image_path = "images/stretchbar.jpg";
		image_path_only = "images/";
		Tscroll_path_to_files = "scroller/";
		page_path = "";
		break;
	case 1:
		header_flash_path = "../Header/header-1down.swf";
		header_image_path = "../images/stretchbar.jpg";
		image_path_only = "../images/";
		Tscroll_path_to_files = "../scroller/";
		page_path="../";
		break;
	case 2:
		header_flash_path = "../../Header/header-2down.swf";
		header_image_path = "../../images/stretchbar.jpg";
		image_path_only = "../../images/";
		Tscroll_path_to_files = "../../scroller/";
		page_path="../../";
		break;
}
