/**
 * Home Class
 * by wirexmedia (info@wirexmedia.com)
 **/

// Initiate cufon before document is ready for IE reasons
/* Headings */
Cufon.replace('.content .heading span', {
	fontFamily: 'Verve Std'
});

var _Home = new Home();
function Home() {
	var _l0 = this;
	$(document).ready(function() {
		_l0.build();
	});
};

Home.prototype.build = function() {
	var _l0 = this;	
	// Adapt the height of the scrolling area
	$('.content .rich-content', _l0.doc).height(405-$('.content .heading', _l0.doc).height());
	// Apply scrolling
	$('#tinyscroll1', _l0.doc).tinyscrollbar();
};
