$(document).ready(function()
  {
  /* footer positionieren
  ----------------------------------------------------------------*/
  set_pos_footer();


  /* set big slider
  ----------------------------------------------------------------*/
  set_big_slider('');
  });


function set_big_slider(str_div)
  {
  $(str_div+' .cx-slider-big .cx-easy-slider').easySlider(
    {
	auto: true,
	continuous: true,
	numeric: true,
	pause: 5000,
	speed: 600
	});
  $(str_div+' .cx-slider-big').removeClass('cx-slider-loading');
  }


function set_pos_footer()
  {
  if($('body').height() < $(window).height())
	{
	$('#cx_content').css('padding-bottom',($(window).height()-$('#cx_header').height()-$('#cx_content').height()-$('#cx_footer').outerHeight())+'px');
	//$('#cx_footer').css('margin-top',($(window).height()-$('#cx_header').height()-$('#cx_content').height()-$('#cx_footer').outerHeight())+'px');
	}
  }
