// JavaScript Document

$(document).ready(function() {
	
	// INDEX column heights
	
	var sbox1 = $('#sbox1').height();
	var sbox2 = $('#sbox2').height();
	var lbox1 = $('#lbox1').height();
	var lbox2 = $('#lbox2').height();
	var sboxs = sbox1 + sbox2 + 14;
	
	var tmpH = Math.max(lbox1, lbox2, sboxs);
	$('#lbox1').height(tmpH);
	$('#lbox2').height(tmpH);
	var tmpSH = (tmpH - sboxs) / 2;
	$('#sbox1').height((sbox1 + tmpSH));
	$('#sbox2').height((sbox2 + tmpSH));
	
	// CUFON
	
	Cufon.replace('.box-header', {fontFamily: 'trajanB', hover: true});
	Cufon.replace('#navigation', {fontFamily: 'trajanB', hover: true});
	Cufon.replace('#subnavigation', {fontFamily: 'trajanB', hover: true});
	Cufon.replace('.teaser-block-text h3', {fontFamily: 'trajanB', hover: true});
	Cufon.replace('.popup-header', {fontFamily: 'trajanB', hover: true});
	
	// MODAL
	
	$("#contact-modal").fancybox({
		'width'				: '500',
        'transitionIn'      : 'ease',
        'transitionOut'     : 'ease',
        'titlePosition'     : 'over'

	});



});
