	var galleryObj = [
						{
							image:"images/cardshow2008/gallery-1.png"
						,	thumb:"images/cardshow2008/gallery-thumb-1.jpg"
						},
						{
							image:"images/cardshow2008/gallery-2.png"
						,	thumb:"images/cardshow2008/gallery-thumb-2.jpg"
						}
					,	{
							image:"images/cardshow2008/gallery-3.png"
						,	thumb:"images/cardshow2008/gallery-thumb-3.jpg"
						}
					,	{
							image:"images/cardshow2008/gallery-4.png"
						,	thumb:"images/cardshow2008/gallery-thumb-4.jpg"
						}
					,	{
							image:"images/cardshow2008/gallery-5.png"
						,	thumb:"images/cardshow2008/gallery-thumb-5.jpg"
						}
					,	{
							image:"images/cardshow2008/gallery-6.png"
						,	thumb:"images/cardshow2008/gallery-thumb-6.jpg"
						}
					,	{
							image:"images/cardshow2008/gallery-7.png"
						,	thumb:"images/cardshow2008/gallery-thumb-7.jpg"
						}
					];

	function xGetElementById(e) {
		if(typeof(e)!='string') return e;
		if(document.getElementById) e=document.getElementById(e);
		else if(document.all) e=document.all[e];
		else e=null;
		return e;
	}

	function updateGallery(id) {
		xGetElementById("gallery-image").src = galleryObj[id-1].image;
	}