function loadScreen(i)
{
i = Number(i)
var imgCaption=new Array(5)
     imgCaption[0]="4 charts compacted into one grid, therefore you can analyse 16 currencies pairs simultaneously.";
     imgCaption[1]="FXMM Highlights clear 10 point 'profit gaps' in the markets where the price can move to.";     
     imgCaption[2]="Multiple Chart & Grid Analysis all on one screen.";  
     imgCaption[3]="Typical buy positions and sell positions on a currency pairs.";  
     imgCaption[4]="Candlestick Charting with Fibonacci overlay to show clear market levels.";  

		
		
	if (i== "0")
	{	
		document.bullet1.src = "images/bullet1-on.gif"
			document.bullet2.src = "images/bullet2-off.gif"
				document.bullet3.src = "images/bullet3-off.gif"
					document.bullet4.src = "images/bullet4-off.gif"
						document.bullet5.src = "images/bullet5-off.gif"
					
	}
		if (i== "1")
	{	
		document.bullet1.src = "images/bullet1-off.gif"
			document.bullet2.src = "images/bullet2-on.gif"
				document.bullet3.src = "images/bullet3-off.gif"
					document.bullet4.src = "images/bullet4-off.gif"
						document.bullet5.src = "images/bullet5-off.gif"
	}
	
			if (i== "2")
	{	
		document.bullet1.src = "images/bullet1-off.gif"
			document.bullet2.src = "images/bullet2-off.gif"
				document.bullet3.src = "images/bullet3-on.gif"
					document.bullet4.src = "images/bullet4-off.gif"
						document.bullet5.src = "images/bullet5-off.gif"
	}
	
			if (i== "3")
	{	
		document.bullet1.src = "images/bullet1-off.gif"
			document.bullet2.src = "images/bullet2-off.gif"
				document.bullet3.src = "images/bullet3-off.gif"
					document.bullet4.src = "images/bullet4-on.gif"
						document.bullet5.src = "images/bullet5-off.gif"
	}
	
			if (i== "4")
	{	
		document.bullet1.src = "images/bullet1-off.gif"
			document.bullet2.src = "images/bullet2-off.gif"
				document.bullet3.src = "images/bullet3-off.gif"
					document.bullet4.src = "images/bullet4-off.gif"
						document.bullet5.src = "images/bullet5-on.gif"
	}
		

     var titleCaption=new Array(5)
     titleCaption[0]='Multi-time Frame Analysis';
     titleCaption[1]='Highlights Gaps';     
     titleCaption[2]='One Page Display';     
     titleCaption[3]='Buy & Sell Directions';     
     titleCaption[4]='Candlestick Charting';     

     var getCaption = imgCaption[i]+""
     var getTitle = titleCaption[i]+""
	 document.getElementById('boldStuff').innerHTML = getCaption;
	 document.getElementById('boldStuff2').innerHTML = getTitle;
	
//stuff for pix
    var pathName = "images/"
    var fileType = ".gif"
    myImage = new Image() ;
	
var imgSrc=new Array()
     imgSrc[0]= pathName+"screenshot-1"+fileType+"";
     imgSrc[1]= pathName+"screenshot-2"+fileType+"";
     imgSrc[2]= pathName+"screenshot-3"+fileType+"";
     imgSrc[3]= pathName+"screenshot-4"+fileType+"";
     imgSrc[4]= pathName+"screenshot-5"+fileType+"";
	 document.pic1.src = imgSrc[i]+"";	
	
}