$(function () {	
	$('ul.roller li.node > a').click(function() {		
		if ($(this).parent().hasClass('active'))
			$(this).parent().removeClass('active');
		else
			$(this).parent().addClass('active');
		return false;
	});
	
	var intHeight = 308 - 12 - 12 - 12 - 12 - 14 + 22;
	if (!document.getElementById('filtres')) intHeight -= 80;
	
	$(window).resize(function(){
		$('#content-inside').css('height', (document.body.offsetHeight - intHeight + 'px'));
		$('#sidebar').css('height', (document.body.offsetHeight - 110 + 'px'));
	});	
	$('#content-inside').css('height', (document.body.offsetHeight - intHeight + 'px'));
	$('#sidebar').css('height', (document.body.offsetHeight - 110 + 'px'));
	
	$('select.select').sSelect({ddMaxHeight: '300px'});
	
	$('.datepicker').datepicker({
		showAnim : 'fadeIn',
		dateFormat: 'yy-mm-dd'
	});
	
	$("#map-link").fancybox({
		'scrolling':'auto',
		'autoScale':'true',
		'centerOnScroll':'true',
		'width':'560',
		'height':'340'
	});
	$(".searchValue").click(function(){
		$("#map-link").trigger('click');
	});	 

	$('.fancybox').fancybox();
	
});

		
function geoFromMap(param)
{
	$(".searchValue").val(param);
	$.fancybox.close();
}
