/*
	M¯LLER JS
	DEPENDENT ON THE JQUERY LIBRARY
	CREATED:12.08.11
	MODIFIED:12.08.11
	AUTHOR:ANDY FIELD @ STUDIO24
*/

$(function() {

	/* SETS HOMEPAGE HIGHLIGHT P TAGS TO HAVE AN EQUAL HEIGHT */ 
	$.fn.setAllToMaxHeight = function(){
		return this.height( Math.max.apply(this, $.map( this , function(e){ return $(e).height() }) ) );
	}
	$('.highlight-new p').setAllToMaxHeight();
	
	/* HOMEPAGE SLIDESHOW */
	$('#home-slideshow').cycle({
		fx: 'fade',
		speed: 2000, 
		timeout: 4000 
	});
	
});




