// JavaScript to control righthand nav rotating pictures.
<!--
					images = new Array(10);
					
					//jersey/images[0] = "<a href='/jersey/services/property_funds.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/property_funds_01.jpg' alt='Go to the Property Funds page' /></a>";
					
					images[0] = "<a href='/jersey/services/discretionary-financial-management-services.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/discretionary_management_services_01.jpg' alt='Go to the Discretionary Management Services page' /></a>";
					
					images[1] = "<a href='/jersey/services/financial-advice-on-diversified-managed-funds.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/managed_funds_01.jpg' alt='Go to the Managed Funds page' /></a>";
					
					images[2] = "<a href='/jersey/services/independent-critical-illness-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/critical_illness_cover _01.jpg' alt='Go to the Critical Illness page' /></a>";
					
					images[3] = "<a href='/jersey/services/independent-equity-release-scheme-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/equity_release_01.jpg' alt='Go to the Equity Release page' /></a>";
					
					images[4] = "<a href='/jersey/services/self_administered.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/jersey_pension_plan _01.jpg' alt='Go to the Jersey Pensions page' /></a>";
					
					images[5] = "<a href='/jersey/services/independent-life-assurance-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/life_assurance_01.jpg' alt='Go to the Life Assurance page' /></a>";
					
					images[6] = "<a href='/jersey/services/independent-managed-fund-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/managed_funds_01.jpg' alt='Go to the Managed Funds page' /></a>";
					
					images[7] = "<a href='/jersey/services/independent-retirement-planning-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/retirement_planning _01.jpg' alt='Go to the Retirement Planning page' /></a>";
					
					images[8] = "<a href='/jersey/services/independent-financial-trust-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/trust_01.jpg' alt='Go to the Trust Services page' /></a>";
					
					images[9] = "<a href='/jersey/services/independent-mortgage-advice.html' target='_self'><img src='http://www.pegasus-fs.com/jersey/images/ad_images/mortgage_advice_01.jpg' alt='Go to the Mortgage Advice page' /></a>";
					
					
					index = Math.floor(Math.random() * images.length);
					
					document.write(images[index]);
					
					//done
					
					// -->