Why not just look to see if it's an even or an odd day?
if(date("j")%2==0){/*specify one file name*/}else{/*specify the other file name*/}
** edit: HA! THAT won't work. well it does today, but it's the 4th . I'll have to expand that.
What about specifying days of the month you want to switch up in an array?
$dayArray = array(1,2,5,6,9,19,13,14,17,18,21,22,25,26,29,30);
if(in_array(date("j"),$dayArray)){/*specify file one*/}else{/*specify file two*/}
just seems more straightforward than copying back and forth all the time, at least to me. :p