function place_controls(){

	var page = $('body').attr('class');

	switch(page){

		case 'home' :
			var t = Math.ceil( (($(window).height()-370) / 2) - 40);
			break;
		case 'groupe' : 
		case 'gite' : 			
			var t = Math.ceil((($(window).height()-335)/2) + 115);
			break;
	}

	$('#controls').css( 'top', t + 'px');
}

$(function() {

	$.fn.superbgimage.options = {
		id: 'superbgimage', 
		z_index: 0,
		inlineMode: 0,
		showimage: 1, 
		vertical_center :1,
		transition: 1,
		transitionout: 1,
		randomtransition: 0,
		showtitle :0,
		slideshow: ( ($('body').attr('class') == 'contact' || $('body').attr('class') == 'gites') ? 0 : 1),
		slide_interval: 5000,
		randomimage: 0,
		speed: 'normal',
		preload: 1
	};

	$('#backgrounds').superbgimage().hide();	
	
	place_controls();

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

	$('#controls')
		.bind('click', function(){	
			$('#backgrounds').nextSlide();
			$('#footer').removeClass('long');
			place_controls();			
		}
	);

	$('#bottom a.credits').click(function(){
		$('#credits').show(); // fadeIn();
		return false;
	});

	$('#credits .overlay').click(function(){
		$('#credits').fadeOut();
	});

	$('#bottom a.discover, #credits a').click(function(){
		window.open(this.href);
		return false;
	});

});
