$(document).ready(function(){
    $('#nav').jStick();

    $('.accroche a:not(.accroche-bottom)').hide();
    $('.accroche').hover(function() {
        $(this).children('a.accroche-bottom').fadeOut('fast');
        $(this).children('a:not(.accroche-bottom)').fadeIn('fast');
    },function() {
        $(this).children('a:not(.accroche-bottom)').fadeOut('fast');
        $(this).children('a.accroche-bottom').fadeIn('fast');
    });

    $('#acceuil-ecole-minislide').cycle();

    if($.browser.msie) {
        $('.accroche a:not(.accroche-bottom)').hover(function() {
            $(this).siblings().stop().fadeTo(1,0.5);
        }, function() {
            $(this).siblings().stop().fadeTo(1,1);
        });
    }

	$('#acceuil-ecole-map').hover(function(){
		$(this).find('iframe').css({
			'position':'absolute',
			'z-index':'10'
		}).animate({
			'width':'940px'
		});
	},function(){
		$(this).find('iframe').css({
			'position':'relative'
		}).animate({
			'width':'300px'
		});;
	});
	
	var blocs_home = $('#accueil-plus-loin-materiel').add('#accueil-plus-loin-sites').add('#accueil-plus-loin-galeries').add('#accueil-plus-loin-pratique');
	blocs_home.hover(function(){
		blocs_home.stop().fadeTo('fast',.7);
		$(this).stop().fadeTo('fast',1);
	},function(){
		blocs_home.stop().fadeTo('fast',1);
	});
	
    $('#makeItBig').jmc_resizr({
        parentElement : $('#header'),
        cropType : 'fill_outer',
        binding : {
            vertical : 'top',
            horizontal : 'center'
        }
    });

});
