$(document).ready(function() {
	// Testimonials
	var maxHeight = 0;
	$("div.testimonial").each(function(index) { if ($(this).height() > maxHeight) { maxHeight = $(this).height(); }});
	$("div.testimonial-list").height(maxHeight);
	$("div.testimonial").quovolver(600, 10000);
	
	// Rounded Corners
	$(".read-more").corner("8px");
	
	$("#tweets").corner("8px");
	$("#tweets .tweet-wrap").corner("8px");
	
	// Tweets
	$("#tweet-feed").twitter({
		username:'SchelManagement',
		count: 2,
		avatar: true
	});
	
	// colorbox
	$('a[href*=video.php]').colorbox({iframe:true, innerWidth:320, innerHeight:240});
	$('a#btn-login-colorbox').colorbox();
});