var openConceptHome = function() {
	var buttons ;

	jPop.pop('jPop', {title: 'Le concept', width: 800, height: 500, buttons: buttons }, function() {
		jQuery('#jPop').parent().parent().children('.ui-dialog-buttonpane').children('button').addClass('button');
		jQuery.post('/modules/o2/ws/ws-concept.php', { } , function(data) {
			jQuery('#jPop').html(data);
		});
	});
	
	return false;
}

jQuery(document).ready(function() {
});