function RelevantTitle()
{
 var baseTitle = "Chibi Photography store";
 var myString = location.href;
 var myStore = "CP";
 if (myString.indexOf("gallery")!=-1) {
  if (myString.indexOf("/6577791_")>0) {myStore = "CNS";}
  if (myString.indexOf("/1549897_")>0) {myStore = "CNS";}
  if (myString.indexOf("/6619700_")>0) {myStore = "CNS";}
  if (myStore == "CNS") {
   baseTitle = "Chibi News Service";
  }
  var separator = " - ";
  var albumTitle = document.getElementById("albumTitle");
  var galleryTitle = document.getElementById("galleryTitle");
  if( albumTitle && albumTitle.textContent ) {
   document.title = baseTitle + separator + albumTitle.textContent;
  }
  else {
   if( galleryTitle && galleryTitle.textContent ) {
    var galleryTitleText = galleryTitle.textContent; // Strip " sub-categories" off the end of the category text
    var finalPositionCategory = galleryTitleText.search(" sub-categories");
    if( finalPositionCategory >= 0 ) {
     galleryTitleText = galleryTitleText.substr( 0, finalPositionCategory );
    } else { // Strip " galleries" off the end of the category/sub-category text
     var finalPositionSubCategory = galleryTitleText.search(" galleries");
     if( finalPositionSubCategory >= 0 ) galleryTitleText = galleryTitleText.substr( 0, finalPositionSubCategory );
    }
    document.title = baseTitle + separator + galleryTitleText;
   }  else { // Not Gallery, Category, or Subcategory
   document.title = baseTitle; // Set title on homepage
   }
  }
 }
}

function smHacks()
{
  if(document.getElementById('r1') != null){
    var myString = location.href;
    var myPrice = "Visible";
    if (myString.indexOf("gallery")!=-1) {
      if (myString.indexOf("/398476_")>0) { myPrice = "Hidden";}
      if (myString.indexOf("/1549897_")>0) { myPrice = "Hidden";}
      if (myString.indexOf("/2647333_")>0) { myPrice = "Hidden";}
      if (myString.indexOf("/5664776_")>0) { myPrice = "Hidden";}
      if (myString.indexOf("/6577791_")>0) { myPrice = "Hidden";}
      if (myPrice == "Visible")
      {
document.getElementById('r1').innerHTML = "<br><table width='85%' border='1' cellspacing='0' cellpadding='0' align='center'><tr><th colspan=6 align='center'>Typical Pricing</th></tr><tr><td>4 x 6</td><td>5 x 7</td><td>8 x 10</td><td>11 x 14</td><td>Photo Mug</td><td>Ceramic tiles</td></tr> <tr><td>$ 5.99</td><td>$ 6.99</td><td>$ 13.99</td><td>$23.99</td><td>$ 11.99 to $14.99</td><td>Special $11.99</td></tr></table>";
document.getElementById('twitar').innerHTML = "<div id='twitter_div' class='cnt smaller'><h3 class='cnt'>Recent Updates<\/h3><ul id='twitter_update_list'><\/ul><\/div><div class='cnt smaller'><a href='http://twitter.com/chibiphoto'>Follow Chibi Photography on Twitter<\/a><\/div>";
      }
    }
  document.getElementById('logocp').innerHTML = "&nbsp;";
  }
}