
$(document).ready(function(){
	
	//centreSite();
	
	$('ul#photos').innerfade({
		animationtype: 'fade',
		speed: 3500,
		timeout: 6000,
		type: 'random',
		containerheight: '453px'
	});

});

$(window).resize(function(){
	centreSite();
});

function centreSite() {
	var winwidth = $(window).width();
	var winheight = $(window).height();
	var sitewidth = $('#container').width();
	var siteheight = $('#container').height();
	var myleft = (winwidth - sitewidth);
	var mytop = (winheight - siteheight);
	
	if (myleft < 0) {
		$('#container').removeClass('horizon');
		$('#container').addClass('horizoff');
	} else {
		$('#container').removeClass('horizoff');
		$('#container').addClass('horizon');
	}
	if (mytop < 0) {
		$('#container').removeClass('verton');
		$('#container').addClass('vertoff');
	} else {
		$('#container').removeClass('vertoff');
		$('#container').addClass('verton');
	}
	//if ($.browser.msie) $('#container').css('left',0); // ie fix
}


