

var image = [
'0',			 
'images/b-a-bobbi.jpg',
'images/b-a-charles.jpg',
'images/b-a-paul.jpg',
'images/b-a-kirsten.jpg',
'images/b-a-2.jpg',
'images/b-a-5.jpg',
				   
];

var quote = [
'0',
'&quot;I met the man of my dreams thanks to my photos.&quot;',
'&quot;You helped bring me and my <strong>soul mate</strong> together!&quot;',
'&quot;I got <strong>so</strong> many responses after posting my pictures.&quot;',
'&quot;I tell <strong>everyone</strong>&mdash;it&rsquo;s the best $150 I ever spent!&quot;',
'&quot;I went from a few emails a week to several a day.&quot;',
'&quot; My photographer helped me get great pictures.&quot;',
];

var from = [
'0',
'Bobbi, Long Beach, CA',
'Charles, Rosedale, MD',
'Paul, Simi Valley, CA',
'Kirsten, Glen Ridge, NJ',
'&nbsp;',
'Meyoung, Los Angeles, CA',
];

function rollover(n) {
document.rollimg.src = image[n];
document.getElementById('quote').innerHTML
 = quote[n];
 document.getElementById('from').innerHTML
 = from[n];

}


