var $j = jQuery; 

$j(function(){

    var offset = 5;
		
    $j("#postContainer").load("http://www.concept-store.fr/random/?offset="+offset);
    $j("#another").click(function(){
        
        offset = offset+5;
    
        $j("#postContainer")
            .slideUp()
            .load("http://www.concept-store.fr/random/?offset="+offset, function() {
                $j(this).slideDown();
            });
            
        return false;
    });

});

jQuery(document).ready(function(){
						   
	jQuery('.concept-description').hide();
	
	 jQuery('a.nom-concept').hover(function() {
		$j(this).parent().parent().find(".concept-description").fadeIn('fast');
	  }, function() {
		jQuery(this).parent().parent().find(".concept-description").hide();
	});
	
	
});
