/*
  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);
  
  if (window.navigator.userAgent.match(/iPhone/i) || window.navigator.userAgent.match(/iPod/i) || window.navigator.userAgent.match(/iPad/i))
  {
    $j('#banner-container .rgmediaimages-media').html('<img src="/fileadmin/assets/img/frontpage_image_banner.png" alt="Frontpage banner" />');
  }
}); // document ready?

