/* CORNERS */

var $j = jQuery.noConflict();
	$j(function(){	// shorthand for $(document).ready() BTW
        $j('div.erroraccueil').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             $j(this).corner();
        });
	});
	
var $j = jQuery.noConflict();
	$j(function(){	// shorthand for $(document).ready() BTW
        $j('div.congratsaccueil').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             $j(this).corner();
        });
	});
	
var $j = jQuery.noConflict();
	$j(function(){	// shorthand for $(document).ready() BTW
        $j('div.error').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             $j(this).corner();
        });
	});
	
var $j = jQuery.noConflict();
	$j(function(){	// shorthand for $(document).ready() BTW
        $j('div.congrats').each(function() {
			// The text of the paragraphs in the rounded divs is also the
			// jQuery code needed to create that effect. Cosmic.
             $j(this).corner();
        });
	});


/* ESPACE CLIENT*/
var $j = jQuery.noConflict();
		$j(document).ready(function() {
		
	
		/* slide projets en cours */
		$j("#slideout1").click(function () {
    		$j("#slideencours").slideUp("slow");
	});
		
		$j("#slidein1").click(function () {
    		$j("#slideencours").slideDown("slow");
	});
	
		/* slide archives */
		$j("#slidearchives").hide();
		$j("#slideout2").click(function () {
    		$j("#slidearchives").slideUp("slow");
	});
		
		$j("#slidein2").click(function () {
    		$j("#slidearchives").slideDown("slow");
	});
	
});


/* SLIDE LOGIN PASS LOST */
var $j = jQuery.noConflict();
		$j(document).ready(function() {

	/* slide inscription newsletter */
		$j("#passlost").hide();
		$j("#jquerypasslost").click(function () {
    		$j("#passlost").slideToggle("slow");
	});
});
