// JavaScript Document
$(document).ready(function() {
	//jQuery.noConflict();
	// gestion cookie (IE prob)
	//var value = $.readCookie('logementFontSize');
	//
	//
	fontSize("#fontControler", "#pageContent", 8, 11, 24);
	// fonctions menu haut
				 //
	$('.header ul li').hover(function(){
						$(this).addClass('over');
						//$(this).('.onglet').addClass('actif');
					}, function() {
						$(this).removeClass('over');
					});
				   //
	$('.header ul li a').click(function(){
						$('.header ul li').removeClass('actif');
						$(this).addClass('actif');
						//return false;
					});
	
	//
	/*var pageHeight = $.('body').innerHeight();
	if(pageHeight < window('height')) {
		$('.hautPage').html('');
	}*/
	
});


