var config = [];

$(document).ready(function(){
	ajusterHauteur();
	
	$(window).resize(function(){ 
		ajusterHauteur(); 
	});
	
	$('#cdCat a').mouseover(function() {
	  $(this).animate({ 'padding-top' : 0 }, 'fast', function() { $(this).addClass('select'); });
	});
	$('#cdCat a').mouseout(function() {
	  $(this).animate({ 'padding-top' : 18 }, 'fast', function() { $(this).removeClass('select'); });
	});
});


function ajusterHauteur()
{
	var taille = $("#index").length >= 1 ? 600 : 795;
	
	if (typeof(window.innerWidth) == 'number')
		var h_ecran = window.innerHeight;
	else if (document.documentElement && document.documentElement.clientHeight)
		var h_ecran = document.documentElement.clientHeight;
	else if (document.body && document.body.clientHeight)
		var h_ecran = document.body.clientHeight;
	else
		return;
	
	$(".page").css('height', h_ecran > taille ? h_ecran : taille);
}
