function addLoadEvent(func) {
  var oldonload = window.onload;
  if (typeof window.onload != 'function') {
    window.onload = func;
  } else {
    window.onload = function() {
      oldonload();
      func();
    }
  }
}

function prepareMagazine() {
	if (!document.getElementById) return false;	
	var magPhoto = document.getElementById("magazineThumbnail");
	var magLink = document.getElementById("magazineLink");
	
	magPhoto.onmouseover = function() {
		magLink.setAttribute("class","button btnGreen_hover");
		magPhoto.setAttribute("class","selected");
		magPhoto.src = "/images/magazine2012-inside.jpg";
    }
	magPhoto.onmouseout = function() {
		magLink.setAttribute("class","button btnGreen");
		magPhoto.setAttribute("class","normal");
		magPhoto.src = "/images/magazine2012.jpg";
	}

	magLink.onmouseover = function() {
		magPhoto.setAttribute("class","selected");
		magPhoto.src = "/images/magazine2012-inside.jpg";
	}
	magLink.onmouseout = function() {
		magLink.setAttribute("class","button btnGreen");
		magPhoto.setAttribute("class","normal");
		magPhoto.src = "/images/magazine2012.jpg";
	}
}

function prepareCookbook() {
	if (!document.getElementById) return false;	
	var cookbookPhoto = document.getElementById("cookbookThumbnail");
	var cookbookLink = document.getElementById("cookbookLink");
	
	cookbookPhoto.onmouseover = function() {
		cookbookLink.setAttribute("class","button btnBlack_hover");
		cookbookPhoto.setAttribute("class","selected");
		cookbookPhoto.src = "/images/appealing-cookbook-back.jpg";
	}
	cookbookPhoto.onmouseout = function() {
		cookbookLink.setAttribute("class","button btnBlack");
		cookbookPhoto.setAttribute("class","normal");
		cookbookPhoto.src = "/images/appealing-cookbook-front.jpg";
	}

	cookbookLink.onmouseover = function() {
		cookbookPhoto.setAttribute("class","selected");
		cookbookPhoto.src = "/images/appealing-cookbook-back.jpg";
	}
	cookbookLink.onmouseout = function() {
		cookbookLink.setAttribute("class","button btnBlack");
		cookbookPhoto.setAttribute("class","normal");
		cookbookPhoto.src = "/images/appealing-cookbook-front.jpg";
	}
}

addLoadEvent(prepareMagazine);
addLoadEvent(prepareCookbook);

$(document).ready(function() {
        $("#cookbookPromoBox a").fancybox({
            'titlePosition'		: 'inside',
            'transitionIn'		: 'none',
            'transitionOut'		: 'none'
        });
});

