﻿Cufon.replace('.menuitem a');
Cufon.replace('.blackbox h2');
Cufon.replace('.address');

$(document).ready(function(){	
	$("#slider").easySlider({
		auto: true,
		pause: 4000,
		controlsShow: true,
		continuous: true,
		numeric: false,
		lastShow: true,
		prevText: '',
		nextText: ''
	});
});

window.onload = resizeIfOdd;
window.onresize = forceBrowserEven;

function resizeIfOdd()
{
	if(navigator.userAgent.indexOf('Firefox/3') != -1 || navigator.userAgent.indexOf('WebKit') != -1)
	{
		if(document.documentElement.clientWidth % 2 == 1)
		{
			//window.resizeBy(-1,0);
		}
	}
};

function forceBrowserEven()
{
	window.setTimeout('resizeIfOdd()',5);
};
