function slide()
{
	now = new Date(); 
	month = now.getMonth() + 1; 
	day = now.getDate(); 
	if(month == 12 && day <= 15) { 
	document.write('<img src="images/DSCN1785.gif" width="513" height="237"/>'); // dec 1
	} 
	else if(month == 12 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2452.gif" width="513" height="237" />'); //dec 16
	} 
	else if(month == 11 && day <= 15 ) { 
	document.write('<img src="images/DSCN2457.gif" width="513" height="237" />'); // nov 1
	} 
	else if(month == 11 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2450.gif" width="513" height="237" />'); // nov 16
	} 
	else if(month == 10 && day <= 15 ) { 
	document.write('<img src="images/DSCN2459.gif" width="513" height="237" />'); // oct 1
	} 
	else if(month == 10 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2460.gif" width="513" height="237" />'); // oct 16
	} 
	else if(month == 9 && day <= 15 ) { 
	document.write('<img src="images/DSCN2461.gif" width="513" height="237" />'); // sep 1
	} 
	else if(month == 9 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2458.gif" width="513" height="237" />'); // sep 16
	} 
	else if(month == 8 && day <= 15 ) { 
	document.write('<img src="images/DSCN6808.gif" width="513" height="237" />'); // Aug 1
	} 
	else if(month == 8 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2462.gif" width="513" height="237" />'); // Aug 16
	} 
	else if(month == 7 && day <= 15 ) { 
	document.write('<img src="images/DSCN2455.gif" width="513" height="237" />'); //jul 1
	} 
	else if(month == 7 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN7032.gif" width="513" height="237" />'); //jul 16
	}
	else if(month == 6 && day <= 15 ) { 
	document.write('<img src="images/DSCN2456.gif" width="513" height="237" />'); //jun 1
	} 
	else if(month == 6 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN1775.gif" width="513" height="237" />'); //jun 16
	}  
	else if(month == 5 && day <= 15 ) { 
	document.write('<img src="images/DSCN2291.gif" width="513" height="237" />'); // may 1
	} 
	else if(month == 5 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2316.gif" width="513" height="237" />');  // may 16
	} 
	else if(month == 4 && day <= 15 ) { 
	document.write('<img src="images/DSCN1774.gif" width="513" height="237" />'); //apr 1
	} 
	else if(month == 4 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2451.gif" width="513" height="237" />'); //apr 16
	} 
	else if(month == 3 && day <= 15 ) { 
	document.write('<img src="images/DSCN1363.gif" width="513" height="237" />'); // mar 1
	} 
	else if(month == 3 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2317.gif" width="513" height="237" />'); // mar 16
	} 
	else if(month == 2 && day <= 15 ) { 
	document.write('<img src="images/DSCN1362.gif" width="513" height="237" />'); // feb 1
	} 
	else if(month == 2 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2451.gif" width="513" height="237" />'); // feb 16
	}
	else if(month == 1 && day <= 15 ) { 
	document.write('<img src="images/DSCN1360.gif" width="513" height="237" />'); //jan 1
	} 
	else if(month == 1 && (day <= 31 && day > 15) ) { 
	document.write('<img src="images/DSCN2453.gif" width="513" height="237" />'); // jan 16
	}  
	else { 
	document.write('<img src="images/DSCN1360.gif" width="513" height="237" />'); 
	} 
																		 
}