﻿var i = 0;
       
        function setStory(){
            var color = document.getElementById("hfColor").value
            if (color == "Norm"){
                var obj1 = document.getElementById('storyimg');
                var obj2 = document.getElementById('headline');
                var obj3 = document.getElementById('summary');
                var obj4 = document.getElementById('signature');
                var obj5 = document.getElementById('storylink');
            }else{
                var obj1 = document.getElementById('storyimg');
                var obj2 = document.getElementById('headline-White');
                var obj3 = document.getElementById('summary-White');
                var obj4 = document.getElementById('signature-White');
                var obj5 = document.getElementById('storylink');
            }
            
            
            i = Math.round(Math.random()*2)+1;
            
            if (i == 1){
                obj1.src = '/images/graphic-polaroid_1.jpg';
                obj2.innerHTML = 'Stability and Opportunity';
                obj3.innerHTML = '"When the time came for Kevin to graduate from Elder, his mentor was right there with him to move him on to post secondary education at Cincinnati State."';
                obj4.innerHTML = '<br />&nbsp;';
                obj5.href = '/fullstory.aspx?storyID=' + i;
            }else if ( i == 2){
                obj1.src = '/images/graphic-polaroid_2.jpg'
                obj2.innerHTML = 'Healing and Confidence'
                obj3.innerHTML = '"When her grandparents met with the school, Arnisha, and the Foundation, they cried.  None of them could believe something this wonderful could be happening to them."';
                obj4.innerHTML = '';
                obj5.href = '/fullstory.aspx?storyID=' + i;
            }else{
                obj1.src='/images/graphic-polaroid_3.jpg';
                obj2.innerHTML = 'Success and Fulfillment';
                obj3.innerHTML = 'There was a scary time for Adam when he thought he would have to drop out of Elder. With the help of the Mathis Foundation and his mentor, Adam will graduate from Elder and has been offered a scholarship to play football at Marian University.';
                obj4.innerHTML = '<br />&nbsp;';
                obj5.href = '/fullstory.aspx?storyID=' + i;
            }
        }