$(document).ready(function(){

 /* EQUAL HEIGHTS */
	
	$.fn.setAllToMaxHeight = function(){
		return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
	}

 $('.blok').setAllToMaxHeight()
 $('.footer_blok').setAllToMaxHeight()

 /* CAROUSEL */
	
	$('#home_carousel').cycle({
		fx:     'fade',
		speed:   1000,
		timeout: 10000,
		random:  0,
		pager:  '#home_carousel_nav',
		pagerAnchorBuilder: function(idx, slide) {
				return '#home_carousel_nav li:eq(' + (idx) + ') a';
		}
	});

 /* PORTFOLIO PLAY */

	$("a.portfolio span").css("opacity","0.8");

 /* RADIO */
 
 $("#radio li").click(function(event){
	event.preventDefault();
	$('#radio > li').removeClass("active");
	var id = this.id;
	var newselect = id.replace('-li-', '-');
	$('#'+newselect).attr('checked', true);
	$(this).addClass("active");
	$(this).parent().addClass("active");
	return false;
 });
 
});

