jQuery(document).ready( function() {
  $(".gallery a[rel='kollektion_2010']").fancybox({ 'titleShow' : false });
  
  $("#content .expandable").expander({
    slicePoint:       220,  // the number of characters at which the contents will be sliced into two parts.
    expandText:       '(&nbsp;...&nbsp;weiterlesen&nbsp;)', // text displayed in a link instead of the hidden part of the element.
    // clicking this will expand/show the hidden/collapsed text
    expandPrefix:     '',
    collapseTimer:    0, // number of milliseconds after text has been expanded at which to collapse the text again
    expandEffect:     'fadeIn',
    expandSpeed:      '',   // speed in milliseconds of the animation effect for expanding the text
    userCollapse:     true, // allow the user to re-collapse the expanded text.
    userCollapseText: '(&nbsp;...&nbsp;Text&nbsp;Einklappen&nbsp;)',  // text to use for the link to re-collapse the text
    userCollapsePrefix: ''
  });

  setTimeout(function(){$('#startupSplash').fadeOut(2000)}, 3000);
  
  // $('#startupSplash').delay(3000).fadeOut(2000);
});

