//cufon replace
if(bWebkey == 'false') {
	Cufon.replace('.font, h2', { 
		fontFamily: 'ITC Officina Sans Std'
	});
}

$(document).ready(function() {
	selectboxes();
	uploadButton();
});

function selectboxes(){
	$('div.select select').selectbox();
	var zIndex = 9999;
	$('div.form div.entry').each(function(){
		$(this).css('z-index',zIndex);
		zIndex--;
	});
}

function setHeightContent() {
	var nMinHeight = parseInt($('div#content').css('min-height').replace('px', ''));
	var nSubmenuHeight = $('section#submenu-left').outerHeight(true);
	var nContactHeight = $('section#contact-info').outerHeight(true);
	var nHeightLeft = nSubmenuHeight + nContactHeight;

	if(nHeightLeft > nMinHeight) {
		var nDifference = (nHeightLeft+25) - nMinHeight;
		nMinHeight += nDifference;
		$('div#content').css('min-height', nMinHeight+'px');
	}
	
}

function uploadButton() {
	$('input.file').filestyle({ 
		 image: 'images/template/btn_browse.gif',
		 imageheight : 32,
		 imagewidth : 77,
		 width : 163,
	 });
}

