That's not an MWE. Please don't put together untested code, this is not compilable, there are errors, such as missing hyperref package and capitalization in \chapter. Please always make a test run before posting.
Sure, you need to find something for the "if". Either TeX' \isodd, or the ifthen package, or toolbox. Here's a way with the changepage package. I just used different sizes to see the changing picture without an actual image.
Code: Select all
\documentclass[12pt,letterpaper,twoside]{book}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[demo]{graphicx}
\usepackage{eso-pic}
\usepackage{ifthen}
\usepackage{hyperref}
\usepackage{changepage}
\strictpagecheck
\begin{document}
\AddToShipoutPicture{\put(0,0){\includegraphics[width=\paperwidth,height=\paperheight]{cover.jpg}}}
\thispagestyle{empty}
\cleardoublepage
\phantomsection
\ClearShipoutPicture
\AddToShipoutPicture{%
\checkoddpage
\ifoddpage
\put(0,0){\includegraphics[width=.5\paperwidth,height=.5\paperheight]{texture1.jpg}}
\else
\put(0,0){\includegraphics[width=.9\paperwidth,height=.9\paperheight]{texture2.jpg}}
\fi
}
\chapter{Title}
text
\newpage
text
\newpage
text
\newpage
text
\newpage
text
\newpage
\end{document}
Stefan