
function BHbody()
{
	var bodyout = '<body bgcolor="#FFFFFF" text="#000000" background="images/BlueSquares.gif">';

	var d = new Date();
	var curr_date = d.getDate();
	var curr_month = d.getMonth() + 1;
	var curr_year = d.getFullYear();	


	if(curr_month==10) {
	var bodyout = '<body bgcolor="#FFFFFF" text="#000000" background="images/background-halloween.jpg">';
	}
		if(curr_month>10) {
	var bodyout = '<body bgcolor="#FFFFFF" text="#000000" background="images/GreenSquares.jpg">';
	}
		
	document.write(bodyout)	
}




function BHheader()
{
	
	var bodyout = '<img src="images/header.jpg" border="0" width="800" height="150">';
	
	var d = new Date();
	var curr_month = d.getMonth() + 1;
	
	if(curr_month==10) {
	var bodyout = '<img src="images/header(halloween).gif" border="0" width="800" height="150">';
	}

	if(curr_month>10) {
	var bodyout = '<img src="images/header(xmas).jpg" border="0" width="800" height="150">';
	}	
	
	document.write('<a href="index.html">'+bodyout+'</a>')	;	
}



   

function BHfooter()
{
	
	var bodyout = '<img src="images/end_main.jpg" width="800" height="43">';
	
	var d = new Date();
	var curr_month = d.getMonth() + 1;
	
	if(curr_month==10) {
	var bodyout = '<img src="images/end_main(halloween).jpg" width="800" height="140">';
	}

	if(curr_month>10) {
	var bodyout = '<img src="images/end_main(xmas).jpg" width="800" height="90">';
	}	
	
	document.write(bodyout)	;	
}





