$(document).ready(function()
{
    // accordion init
    $('.toggle_container').hide();
    $('.trigger').click( function() {
      if ( $(this).hasClass('trigger_active') ) {
      $(this).next('.toggle_container').slideToggle('slow');
      $(this).removeClass('trigger_active');
    } else {
      $('.trigger_active').next('.toggle_container').slideToggle('slow');
      $('.trigger_active').removeClass('trigger_active');
      $(this).next('.toggle_container').slideToggle('slow');
      $(this).addClass('trigger_active');
    };
    return false;
    });
    
    // x-mas special
			  $('#img2').hide();
				$('#imageFader').mouseenter(function(){
					$('#img1').fadeOut('slow');
          $('#img2').fadeIn('slow');
				});
				$('#imageFader').mouseleave(function(){
					$('#img2').fadeOut('slow');
          $('#img1').fadeIn('slow');
				});
    
    /********************* fancybox *********************/
    $('.galleryCont > a').fancybox({
      //'titlePosition' : 'over'
    });
});

