/*
  This script contains all the functions that we need 
  to use the jQuery Tools in this website.
  
*/

/* 
  First some extra functions and inits
*/


/*
  $j will be the reference to jQuery
  ==================================
*/
  var $j = jQuery.noConflict();
//$j('div#page-container').fadeOut(1);
  
/*
  Run the scripts when the document is loaded
*/
$j(document).ready(function() {

  //$j('div#col-container').css('display','none');
  //$j('div#col-container').fadeIn(654);

}); // document ready?
