﻿$(function() {
		$(".navigation li img").hover(function(){
            $(this).fadeTo(200,0); },function(){
                $(this).fadeTo(200,1);
        });
		
    	$(".more-content").hide();	
    $(".plus").click(function(){
        var more = $(this).next(".more-content");
        var showmore = false;
        if (!more.is(":visible")) {
            showmore = true;
        }
        $(".more-content").slideUp();
        if (showmore) {
            more.slideDown();
        }
    });
		
    $(".moin").click(function(){
        $(".more-content").slideUp();
        $(this).parents(".more-content").slideUp();
    });
		
		$(".google-bt").click(function(){
			$(".google").css({'position': 'relative'});
			$(".google").css({'margin-top': '0'});
			$(".google").css({'margin-left': '0'});
			$(".google").hide();
            $(".google").slideDown();
        })
		$(".fermer").click(function(){
            $(".google").slideUp();
        })
        
});


