$(function() {
//général
	$('.menu_plann li').hover(function() {
		$(this).find('h3').fadeIn();
		$(this).find('a>img').css(
		{
			'opacity':'0.3'
		});
		
		$(this).find('img.bg-item').css(
		{
			'z-index':'11',
		});
		$(this).css(
		{
			'z-index':'999',
		});
	},function(){
		$(this).find('h3').fadeOut('fast');
		$(this).find('a>img').css(
		{
			'opacity':'1'
		});
		$(this).find('img.bg-item').css(
		{
			'z-index':'1',
		});
	});
//Mutilations
	$('.menu_plann li.mutil').hover(function() {

		$(this).find('img.bg-item').stop().animate({
			'width' :'210',
			'height':'210'
		},200);
		},function(){
		$(this).css(
		{
			'z-index':'6'
		});
		$(this).find('img.bg-item').animate({
			'width' :'205',
			'height':'205'
		},200);
	});
//Accueil
	$('.menu_plann li.accueil').hover(function() {

		$(this).find('img.bg-item').stop().animate({
			'width' :'150',
			'height':'150'
		},200);
		},function(){
		$(this).css(
		{
			'z-index':'3'
		});
		$(this).find('img.bg-item').animate({
			'width' :'145',
			'height':'145'
		},200);
	});
//Animations
	$('.menu_plann li.anim').hover(function() {
		$(this).find('img.bg-item').stop().animate({
			'width' :'185',
			'height':'185'
		},200);
		},function(){
		$(this).css(
		{
			'z-index':'5'
		});
		$(this).find('img.bg-item').animate({
			'width' :'180',
			'height':'180'
		},200);
	});
//Consultations
	$('.menu_plann li.consult').hover(function() {
		$(this).find('img.bg-item').stop().animate({
			'width' :'172',
			'height':'172'
		},200);
		},function(){
		$(this).css(
		{
			'z-index':'4'
		})
		$(this).find('img.bg-item').animate({
			'width' :'167',
			'height':'167'
		},200);
	});
	//

console.log($(document).height());
	$(function(){
			
        $('#content_inside').css({'height':(($(document).height())-193)+'px'});

        $(window).resize(function(){
        $('#content_inside').css({'height':(($(document).height())-193)+'px'});
		console.log($(document).height());
        });
    });


});
