/**
 * Fancy script sets up the page and runs the code in the div.js elements
 */
 
$(function(){

jQuery.bt.defaults.closeWhenOthersOpen = true;
 

   $('div.pop').each(function() {
  
   var target = $(this);   
   
   target.bt(
   {
    ajaxPath: ["$(this).attr('href')"],
    strokeStyle: '#aec8e8',
    fill: '#fff',
    strokeWidth: 2,
    width: 300,
    trigger:'click',
    width: 400
   }
   );
 }
 );


    $('span.poplink').each(function() {
  
   var target = $(this);   
   
   target.bt(
   {
    ajaxPath: ["$(this).attr('href')"],
    strokeStyle: '#aec8e8',
    fill: '#fff',
    strokeWidth: 2,
    trigger: 'click',
    width: 400
   }
   );
 }
 );



  $('a.btnTop').bt(
  {
  }
  );

  $('input.evtSearchTxt').bt(
  {
  }
  );


   
});



