// JavaScript Document
/* This code is Copyright (c) 1996 Nick Heinle and Athenia Associates, 
 * all rights reserved. In order to receive the right to license this 
 * code for use on your site the original code must be copied from the
 * Web site webreference.com/javascript/. License is granted to user to 
 * reuse this code on their own Web site if and only if this entire copyright
 * notice is included. Code written by Nick Heinle of webreference.com.
 */

function MakeArray()
        {
        this.length = MakeArray.arguments.length
        for (var i = 0; i < this.length; i++)
        this[i+1] = MakeArray.arguments[i]
        }

var siteopt = new MakeArray("select article",
"Edinburgh Evening News - Burn's Night 2010",
"Edinburgh Evening News - Jan 24th 2010",
"- - - - - - - - - - - - - - - -",
"Tartan Day/Obama Girl press",
"&nbsp;&nbsp;&nbsp;The List - May 2009 &#8594;",	
"&nbsp;&nbsp;&nbsp;Askmen.com - Apr 2009 &#8594;",
"&nbsp;&nbsp;&nbsp;Daily Telegraph Apr 2009 &#8594;",
"&nbsp;&nbsp;&nbsp;Metro - Apr 2009 &#8594;",
"- - - - - - - - - - - - - - - -",
"Sunday Herald Mag 2/March/2008",
"Herald 30/Mar/2007",
"Herald 20/Oct/2006",
"Sunday Herald Mag 9/July/2006 p.1",
"Sunday Herald Mag 9/July/2006 p.2",
"No.1 Magazine Apr/2006",							
"The List 14-28/Apr/2005",							
"Herald 2/Dec/2004",
"The List 11-25/Apr/2002",
"Sunday Post Magazine 3/Feb/2002",
"Scotsman 17/Jul/2002",
                            "Scotsman 13/Mar/2002",
                            "Sunday Herald 4/Nov/2001",
							"Scotsman 15/Feb/03",
							"Various Cuttings");

var url = new MakeArray("",
					"../press/a_11.php",
					"../press/a_10.php",
					"",	
"",						"http://www.list.co.uk/article/17639-amber-lee-ettingers-inspiring-dressed-to-kilt-success/",			"http://uk.askmen.com/galleries/7th-annual-dressed-to-kilt-charity-event/picture-1.html",					"http://www.telegraph.co.uk/news/picturegalleries/celebritynews/5081813/Dressed-to-Kilt-Mike-Myers-and-Sean-Connery-celebrate-Scotland-for-Big-Apples-Tartan-Week.html?image=10",					"http://www.metro.co.uk/galleryDetailPage.html?in_gallery_id=2156&in_page_id=3&in_image_id=26442&in_category_id=2087",
						"",
						"../press/a_9.php",
						"../press/a_a.php",
						"../press/b1.php",
						"../press/a.php",
						"../press/a2.php",
						"../press/1.php",
                        "../press/2.php",
						"../press/3.php",
                        "../press/4.php",
                        "../press/5.php",
						"../press/5b.php",
                        "../press/6.php",
						"../press/7.php",
						"../press/8.php",
						"../press/9.php");

function jumpPage(form)
{
        i = form.SelectMenu.selectedIndex;
        if (i == 0) return;
        window.location.href = url[i+1];
}


