var Pick=new function(){this.PHOTOBOOK_OVER_IMG="/images/launch/photobook-over.png";this.RIFF_OVER_IMG="/images/launch/riff-over.png";this.COLLABORATIVE_OVER_IMG="/images/launch/collaborative-over.png";this.IDEA_OVER_IMG="/images/launch/idea-over.png";this.PHOTOBOOK_IMG="/images/launch/photobook.png";this.RIFF_IMG="/images/launch/riff.png";this.COLLABORATIVE_IMG="/images/launch/collaborative.png";this.IDEA_IMG="/images/launch/idea.png";this.JOIN_IMG='/images/launch/join.png';this.JOIN_OVER_IMG='/images/launch/join-over.png';}();Application.preload(Pick.GAME_OVER_IMG,Pick.IDEA_OVER_IMG,Pick.PHOTOBOOK_OVER_IMG,Pick.STORY_OVER_IMG);$(document).ready(function(){$('#photos img').mouseover(function(){Pick.imageSwapper(this,Pick.PHOTOBOOK_OVER_IMG);});$('#photos img').mouseout(function(){Pick.imageSwapper(this,Pick.PHOTOBOOK_IMG);});$('#collaborative img').mouseover(function(){Pick.imageSwapper(this,Pick.COLLABORATIVE_OVER_IMG);});$('#collaborative img').mouseout(function(){Pick.imageSwapper(this,Pick.COLLABORATIVE_IMG);});$('#riff img').mouseover(function(){Pick.imageSwapper(this,Pick.RIFF_OVER_IMG);});$('#riff img').mouseout(function(){Pick.imageSwapper(this,Pick.RIFF_IMG);});$('#idea img').mouseover(function(){Pick.imageSwapper(this,Pick.IDEA_OVER_IMG);});$('#idea img').mouseout(function(){Pick.imageSwapper(this,Pick.IDEA_IMG);});$('#join img').mouseover(function(){Pick.imageSwapper(this,Pick.JOIN_OVER_IMG);});$('#join img').mouseout(function(){Pick.imageSwapper(this,Pick.JOIN_IMG);});});Pick.imageSwapper=function(element,image){$(element).attr("src",image);}