Function to detect if something is even or odd...
... for all your striper needs.
function is_odd( $int ){
return( $int & 1 );
}
function is_odd( $int ){
return( $int & 1 );
}


