/* 
(C) 2010 Wolfgang Klinger, wk@plan2.net
(C) 2010 plan2net, info@plan2.net
*/

$(document).ready(function(){

  $('a.shadowbox').each(function(){
    $(this).attr('rel', 'shadowbox;width=640;height=480px;player=swf');
  });

  Shadowbox.init({
    players:  ['html', 'iframe', 'swf'],
    overlayColor: '#000',
    overlayOpacity: 0.7
  });

/* Sidebar right column */
  var sidebar_blocks = $('#sidebar .ce');
  if (sidebar_blocks.length > 0) {
    $('#sidebar').prepend('<div class="first-block">&nbsp;</div>');
    sidebar_blocks.first().addClass('second-block');
    sidebar_blocks.last().addClass('last-block');
    sidebar_blocks.not(':last').after('<div class="spacer"></div>');
  }

  $('#site-search').focus(function() {      
    if ($(this).attr('value')==$(this).attr('defaultValue'))
    $(this).attr('value', '');
  });
  $('#site-search').blur(function() {      
    if ($(this).attr('value')=='')
    $(this).attr('value', $(this).attr('defaultValue'));
  });

  $('.accordion').accordion({
    active: false,
    collapsible: true,
    autoHeight: false,
    header: 'h3'
  });


});



/* SB FONTSIZE */
$(document).ready(function(){ 
	$('#fontsizer').jfontsizer({ applyTo: 'body', changesmall: '2', changelarge: '2', expire: 30 }); 
	$('#fs_med').html('<img src="fileadmin/schrack/img/action_smaller.gif" width="13" height="18" border="0" alt="" />');
	$('#fs_lrg').html('<img src="fileadmin/schrack/img/action_bigger.gif" width="13" height="18" border="0" alt="" />');
});

