// JavaScript Document

Cufon.replace('h1, h2, h3, h4, h5, h6', {fontFamily: 'Proxima Nova'});

function isIE() { 
	return (navigator.appName.indexOf('Microsoft')>=0); 
}

function isIE7() { 
	return (navigator.appName.indexOf('Microsoft')>=0 && navigator.appVersion.indexOf('MSIE 7')>=0); 
}

if (document.getElementById('project_sbl')) {
	document.getElementById('project_sbl').style.left = isIE7() ? -33 : -30;
}

if (document.getElementById('location_sbr')) {
	document.getElementById('location_sbr').style.right = isIE7() ? -20 : -20;
}

if (document.getElementById('features_sbl')) {
	document.getElementById('features_sbl').style.left = isIE7() ? -28 : -25;
	document.getElementById('features_sbl').style.top = isIE() ? 13 : 13;
	document.getElementById('features_sbr').style.right = isIE7() ? -23 : -20;
	document.getElementById('features_sbr2').style.right = isIE7() ? -23 : -20;
	document.getElementById('features_sbr3').style.right = isIE7() ? -23 : -20;
}

if (document.getElementById('contact_sbr')) {
	document.getElementById('contact_sbr').style.right = isIE7() ? -18 : -20;
}

