function init() {
	
	$("#modelPageDvdStore").mousedown(function(){
      $(this).attr("src", "/images/modelPageDvdStoreOn.jpg");
    }).mouseout(function(){
      $(this).attr("src", "/images/modelPageDvdStore.jpg");
    }).mouseup(function(){
      $(this).attr("src", "/images/modelPageDvdStore.jpg");
    });

	$("#modelPagePreviews").mousedown(function(){
      $(this).attr("src", "/images/modelPagePreviewsOn.jpg");
    }).mouseout(function(){
      $(this).attr("src", "/images/modelPagePreviews.jpg");
    }).mouseup(function(){
      $(this).attr("src", "/images/modelPagePreviews.jpg");
    });

	$("#seeHimNakedNow").mousedown(function(){
      $(this).attr("src", "/images/modelPageSeeHimNakedNowTextOn.jpg");
    }).mouseout(function(){
      $(this).attr("src", "/images/modelPageSeeHimNakedNowText.jpg");
    }).mouseup(function(){
      $(this).attr("src", "/images/modelPageSeeHimNakedNowText.jpg");
    });

	if($("#modelPageLiveMuscleShow").length>0) {
		$("#modelPageLiveMuscleShow").mousedown(function(){
		  $(this).attr("src", "i/mages/modelPageLivemuscleshowOn.jpg");
	    }).mouseout(function(){
		  $(this).attr("src", "/images/modelPageLivemuscleshow.jpg");
	    }).mouseup(function(){
		  $(this).attr("src", "/images/modelPageLivemuscleshow.jpg");
	    });
	}

	if($("#modelPageLiveMuscleShowOnline").length>0) {
		$("#modelPageLiveMuscleShowOnline").mousedown(function(){
		  $(this).attr("src", "/images/modelPageLivemuscleshowOn.jpg");
	    }).mouseout(function(){
		  $(this).attr("src", "/images/modelPageLivemuscleshow.gif");
	    }).mouseup(function(){
		  $(this).attr("src", "/images/modelPageLivemuscleshow.gif");
	    });
	}

}