/* This myFOX KickApps Javascript file was developed Tracy DeLatte in Dallas.
   Last update on Jan. 17, 2008.
   The following scripts are needed for writing extra elements onto various pages on your KickApps site. Note that you will need to modify URLs in the scripts if you plan to use them on your site. You may need a basic understanding of Javascript to adapt these scripts for your site. E-mail questions to tracy.delatte@foxtv.com. */

// Categories Drop Down
 function switchcat(categories){
  var cat = $j('#category_dropdown option:selected').html();
  if(cat!==''){ window.location="http://affiliate.kickapps.com/service/searchEverything.kickAction?keywords="+cat+"+&&includeBlog=on&as=85365";
 }
 }

// Play Page Move Elements
  function moveModules(){
  if($('ka_playPage')){
  // insert <div> inside another element
  $j('#ka_playPageDetails').prependTo('#ka_playPageStats');}
  }
  Ka.addDOMLoadEvent(moveModules); 