jQuery(window).load(function() {

});

jQuery(document).ready(function() {
	jQuery('ul#sliderContent').innerfade({ speed: 'slow', timeout: 6000, type: 'sequence', containerheight: '261px'});
	setHeight();
	jQuery(".gallery a[rel^='prettyPhoto']").prettyPhoto({
		animationSpeed:'slow',
		theme:'light_square',
		slideshow:5000, 
		overlay_gallery:false,
		autoplay_slideshow: true
	});
	jQuery('.pretty_photo').prettyPhoto();
});

function setHeight() {
	var maxHeight = 0;
	if (jQuery('div#container_li').height() > maxHeight)
		maxHeight = jQuery('div#container_li').height();
	if (jQuery('div#rechter_box').height() > maxHeight)
		maxHeight = jQuery('div#rechter_box').height();
   	jQuery('div#rechter_box').css('height',maxHeight+'px');
   	jQuery('div#container_li').css('height',maxHeight-213+'px');
}
