var searchText = '';

$(document).ready(function() {
	// Libelule
	/*if ($('#left-menu .menu').length == 1) {
		$('#libelule').css('top', '506px');
	}*/
	
	// Submenus
	
	$('.menu').hover(
		function() {
			$(this).find('.submenu').show();
		},
		function() {
			$(this).find('.submenu').slideUp('fast');
		}
	);
	
	// Search field
	$('#search-field-input').focus(function() {
		if (!$(this).hasClass('everClicked')) {
			$(this).addClass('everClicked');
			
			if (searchText == '') {
				searchText = $(this).attr('value');
				$(this).attr('value', '');
			}
			else if ($(this).attr('value') == searchText) {
				$(this).attr('value', '');
			}
		}
	});
	$('#search-field-input').focusout(function() {
		if ($(this).attr('value') == '') {
			$(this).removeClass('everClicked');
			$(this).attr('value', searchText);
		}
	});
	
	// Special button
	$('#special-button-link').hover(
		function() {
			$(this).find('img').attr('src', '/images/special-button-hover.png');
		},
		
		function() {
			$(this).find('img').attr('src', '/images/special-button.png');
		}
	);
	
	$('table tr').hover(
		function() {
			$(this).addClass('tr-hover');
		},
		function() {
			$(this).removeClass('tr-hover');
		}
	);
	
	$('.adherent-list tbody tr td:first-child, .projet tbody tr td:first-child').css('font-weight', 'bold');
	
	// Videos
	$('.videos .video-label a').click(
		function() {
			if ($(this).hasClass('active')) {
				$(this).parent().next().slideUp('fast');
				$(this).removeClass('active');
			}
			else {
				$(this).parent().next().slideDown('normal');
				$(this).addClass('active');
			}
		}
	);
	
	// Videos in interview
	$('.press-videos .press-video-label a').fancybox();
	
	// Conferences
	$('.dl-category').click(
		function() {
			if ($(this).hasClass('active')) {
				$(this).parent().next().slideUp('fast');
				$(this).removeClass('active');
			}
			else {
				$(this).parent().next().slideDown('normal');
				$(this).addClass('active');
			}
		}
	)
	
	// Photos
	$('.fancybox').fancybox();
	
	// Carte de voeux
	if ($('#carte-voeux-link').length > 0) {
		$('#carte-voeux-link').trigger('click');
	}
});

$(window).load(function() {
	if ($('#carrousel').length > 0) {
		$('#carrousel img').show();
		$("#carrousel").theatre({effect:"3d", selector:"img", controls:"none"})
		
		$('#carrousel-prev').click(function() {
			$('#carrousel').theatre('prev');
		});
		$('#carrousel-next').click(function() {
			$('#carrousel').theatre('next');
		});
	}
});

function displayVideo(elementId, vname)
{
	var flashvars = { name: vname };
	var params = { allowFullScreen: 'true', wmode: 'transparent' };
	
	var attributes = {id: 'base', name: 'base', quality: 'best'};
	
	swfobject.embedSWF('/swf/player/player.swf?d', elementId, '600px', '338px', '9.0.0', '/swf/expressInstall.swf', flashvars, params, attributes);
}
