$(function(){
	// Lien nouvelle fenêtre
	$('a.newWindow, area.newWindow').click(function(){ window.open(this.href); return false; });
	
	// Diapos
	$('#diaporama').diaporama();
	
	// Promos
    $('#promos ul.jcarousel-skin-promos').jcarousel({
		scroll: 1,
		auto: 5,
		animation: 'slow',
		wrap: 'circular',
		vertical: true,
		buttonPrevHTML: '',
		buttonNextHTML: ''
	});
	
	// popupMentions
	$('.popupMentions').click(function(){
		var hauteur = 500;
		var largeur = 500;
		var top = (screen.height-hauteur)/2;
		var left = (screen.width-largeur)/2;
		window.open('mentions-legales.html', '', 'top='+top+',left='+left+',width='+largeur+',height='+hauteur+',menubar=no,scrollbars=no,statusbar=no');
		return false;
	});
	
	// popupVisite
	$('.popupVisite').click(function(){
		var hauteur = 550;
		var largeur = 750;
		var top = (screen.height-hauteur)/2;
		var left = (screen.width-largeur)/2;
		window.open('visite-campingsunocean/visite-campingsunocean.html', '', 'top='+top+',left='+left+',width='+largeur+',height='+hauteur+',menubar=no,scrollbars=no,statusbar=no');
		return false;
	});
	
		// popupVisiteen
	$('.popupVisiteen').click(function(){
		var hauteur = 550;
		var largeur = 750;
		var top = (screen.height-hauteur)/2;
		var left = (screen.width-largeur)/2;
		window.open('../visite-campingsunocean/visite-campingsunocean.html', '', 'top='+top+',left='+left+',width='+largeur+',height='+hauteur+',menubar=no,scrollbars=no,statusbar=no');
		return false;
	});
	
});
