function headerImage() {

	function makeArray() {
		for (i = 0; i<makeArray.arguments.length; i++)
		this[i + 1] = makeArray.arguments[i];
	}	

	var months = new makeArray('January','February','March','April','May','June', 'July','August','September','October','November','December');
	var date = new Date();
	var day = date.getDate();
	var month = date.getMonth() + 1;
	var yy = date.getYear();
	var year = (yy < 1000) ? yy + 1900 : yy;

	if (months[month] == "March" || months[month] == "April" || months[month] == "May"){    
    		
                if (months[month] == "March" && day == 17){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/st_pat.png"
            }

                else if (months[month] == "April" && day == 8){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/easter_header.png"
            }

                else if (months[month] == "May" && day == 31){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/usa_flag.png"
            }

    		else {
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/spring.png"
                }  

	}

        if (months[month] == "June" || months[month] == "July" || months[month] == "August"){    
    		
                if (months[month] == "June" && day == 14){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/usa_flag.png"
            }

                else if (months[month] == "July" && day == 4){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/usa_flag.png"
            }

    		else {
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/summer.png"
                }   

	}
   
        if (months[month] == "September" || months[month] == "October" || months[month] == "November"){    
    		
            if (months[month] == "September"){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/fall_sept.png"
            }
           
            else if (months[month] == "October" && day != 31){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/fall.png"
            }

            else if (months[month] == "October" && day == 31){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/halloween.png"
            } 

            else if (months[month] == "November" && day != 12 && day != 22){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/fall_nov.png"
            }

            else if (months[month] == "November" && day == 12){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/usa_flag.png"
            } 

            else if (months[month] == "November" && day == 18){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/birthday.png"
            } 

            else if (months[month] == "November" && day == 22){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/thanksgiving.png"
            } 

	}

	if (months[month] == "December" || months[month] == "January" || months[month] == "February"){  

                if (months[month] == "December" && day == 25){
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/christmas.png"
            }

    		else {
		document.getElementById("header-background-right").src="http://www.peterfkitz.com/images/winter.png"
                }   

	}




}