/* JS for mineblogger */





if (Drupal.jsEnabled) {
$(document).ready(function() {


  /* doc ready stuff goes here */
  






 $("#allcheck").click(function()
  {
   var checked_status = this.checked;
   $(".thCheckbox").each(function()
   {
    this.checked = checked_status;
   });
  });





  });
}



/* other funtions */

function openWin(mylink){
   window.open(mylink.href,'mbwin','width=800,height=700,scrollbars=yes');	
}


function changeState(Sel){
   var val = Sel.value;
   if(val != ''){	   
	document.location = '/category/states/' + val;   
   }
   
}