<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>asadco &#187; réseau</title>
	<atom:link href="http://www.asadco.fr/archives/category/reseau/feed" rel="self" type="application/rss+xml" />
	<link>http://www.asadco.fr</link>
	<description></description>
	<lastBuildDate>Sun, 05 Feb 2012 08:37:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Méli-mélo orléanais !</title>
		<link>http://www.asadco.fr/archives/1446</link>
		<comments>http://www.asadco.fr/archives/1446#comments</comments>
		<pubDate>Fri, 03 Feb 2012 20:14:40 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1446</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Le froid hivernal ne vous incite pas à sortir et le cocooning est de rigueur ? Voici pour vous, une grille de mots mêlés où s&#8217;entrecroisent les entreprises que j&#8217;apprécie particulièrement et que j&#8217;ai pu croiser tout au long de mes 5 années en tant que chef d&#8217;entreprise (à noter qu&#8217;un bon nombre d&#8217;entre elles [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Le froid hivernal ne vous incite pas à sortir et le cocooning est de rigueur ?</p>
<p>Voici pour vous, une grille de mots mêlés où s&#8217;entrecroisent les entreprises que j&#8217;apprécie particulièrement et que j&#8217;ai pu croiser tout au long de mes 5 années en tant que chef d&#8217;entreprise (à noter qu&#8217;un bon nombre d&#8217;entre elles se trouvent sur la région orléanaise. Je n&#8217;ai pas pu, hélas, toutes les mentionner).</p>
<p>Afin de vous faciliter la tâche, je vous délivrerai les noms en vrac dimanche, mais une grande majorité se trouvent dans mes contacts <a title="ASADCO sur Facebook" href="https:/www.facebook.com/ASADCO.Centre" target="_blank">facebook page ASADCO </a></p>
<p>A vous de jouer !!!</p>
<p><a title="Mots mêlés ASADCO " href="http://www.asadco.fr/wp-content/uploads/2012/02/Mots-mêlés.pdf" target="_blank">Version imprimable de la grille </a></p>
<p><a href="http://www.asadco.fr/wp-content/uploads/2012/02/mots-mêlés.jpg"><img class="aligncenter size-full wp-image-1449" title="mots mêlés" src="http://www.asadco.fr/wp-content/uploads/2012/02/mots-mêlés.jpg" alt="" width="470" height="430" /></a></p>
<p>Dimanche est arrivé avec la neige et comme promis,  les désignations d&#8217;entreprises à trouver aussi (les espaces n&#8217;ont pu être indiqués, tout comme les points&#8230;) ! Bon dimanche !</p>
<p>Itsystem &#8211; Groupamis &#8211; Durand Montouché &#8211; Ks trade &#8211; Ecodesign &#8211; Restoself &#8211; Pub n&#8217;drive &#8211; Pentalog &#8211; Ce faire plaisir &#8211; Easyflyer &#8211; Mediablue &#8211; Dicodeco &#8211; Web It Tv &#8211; Pare (association) &#8211; Edith mag &#8211; King Dagobert &#8211; Free Stock &#8211; Pimastreet &#8211; Patricegabin.com &#8211; France bleu &#8211; Ecotravel &#8211; Sool design &#8211; Boîte à média</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1446/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DCF : concours national de la commercialisation 2012</title>
		<link>http://www.asadco.fr/archives/1409</link>
		<comments>http://www.asadco.fr/archives/1409#comments</comments>
		<pubDate>Sun, 29 Jan 2012 12:47:15 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[efficacité]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1409</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Le concours national de la commercialisation porté par le réseau DCF (Dirigeants Commerciaux de France) en partenariat avec le ministère de l&#8217;éducation nationale et le ministère de l&#8217;enseignement supérieur et de la recherche se déroulera le 29 mars 2012. Retrouvez plus d&#8217;informations sur le site DCF, rubrique CNC 2012 &#160;]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Le concours national de la commercialisation porté par le <strong>réseau DCF</strong> (Dirigeants Commerciaux de France) en partenariat avec le ministère de l&#8217;éducation nationale et le ministère de l&#8217;enseignement supérieur et de la recherche</p>
<p>se déroulera le 29 mars 2012.</p>
<p>Retrouvez plus d&#8217;informations sur le <a title="Réseau DCF" href="http://reseau-dcf.fr" target="_blank">site DCF</a>, rubrique CNC 2012</p>
<p><a href="http://www.asadco.fr/wp-content/uploads/2012/01/Concours-national-de-la-commercialisation-DCF-2012.gif"><img class="aligncenter size-medium wp-image-1411" title="Concours national de la commercialisation DCF 2012" src="http://www.asadco.fr/wp-content/uploads/2012/01/Concours-national-de-la-commercialisation-DCF-2012-212x300.gif" alt="" width="212" height="300" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1409/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Partenaire d&#8217;une journée avec David Super Coup de Pouce !</title>
		<link>http://www.asadco.fr/archives/1373</link>
		<comments>http://www.asadco.fr/archives/1373#comments</comments>
		<pubDate>Mon, 23 Jan 2012 19:24:29 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[efficacité]]></category>
		<category><![CDATA[formation]]></category>
		<category><![CDATA[organisation]]></category>
		<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1373</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Entraide&#8230; maître mot quand on fait du réseau ! ASADCO partenaire d&#8217;un jour avec David Super Coup de Pouce, émission quotidienne, sur France Bleu Orléans (100.9) Le reportage du jour version audio Julien oeuvre chaque dimanche, à l&#8217;église Ste Paterne en tant qu&#8217;organiste. Après avoir arrêté ses études au bout de 2 années afin devenir [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Entraide&#8230; maître mot quand on fait du réseau !</p>
<p>ASADCO partenaire d&#8217;un jour avec David Super Coup de Pouce, émission quotidienne, sur <a title="France Bleu Orléans" href="http://sites.radiofrance.fr/chaines/france-bleu/?tag=orleans" target="_blank">France Bleu Orléans</a> (100.9)</p>
<p>Le reportage du jour <a title="2012 23 01 Emission Super Coup de Pouce" href="http://soundcloud.com/mamirock/emission-david-coup-de-pouce" target="_blank">version audio</a></p>
<p><a href="http://www.asadco.fr/wp-content/uploads/2012/01/David-super-coup-de-pouce.gif"><img class="aligncenter size-full wp-image-1374" title="David super coup de pouce" src="http://www.asadco.fr/wp-content/uploads/2012/01/David-super-coup-de-pouce.gif" alt="" width="313" height="313" /></a></p>
<p>Julien oeuvre chaque dimanche, à l&#8217;église Ste Paterne en tant qu&#8217;organiste.</p>
<p>Après avoir arrêté ses études au bout de 2 années afin devenir prêtre  (études de psychologie, théologie, philosophie..), Julien est actuellement au chômage et souhaite se ré-orienter.</p>
<p>Son parcours atypique créé quelques  interrogations et l&#8217;idée d&#8217;un bilan de compétences soumis par Pôle Emploi lui est donné.</p>
<p>Malheureusement, le bilan de compétences  a un coût et vivant du RSA, Julien se voit confronter à la dure réalité : Comment faire ?</p>
<p>Frédérique GENTY, créatrice, gérante de l&#8217;Agence ASADCO propose ses services.</p>
<p>Forte d&#8217;une expérience de 15 années en Recrutement et Chargée de Formation, elle soumet son aide pour rencontrer Julien et apporter les quelques conseils qui peuvent le &laquo;&nbsp;rebooster&nbsp;&raquo;.</p>
<p>Merci à celles et à ceux qui souhaitent s&#8217;investir également dans cette mission !!!</p>
<p><a href="http://www.asadco.fr/wp-content/uploads/2012/01/Article-Facebook-David-Super-Coup-de-Pouce1.gif"><img class="aligncenter size-full wp-image-1376" title="Article Facebook David Super Coup de Pouce" src="http://www.asadco.fr/wp-content/uploads/2012/01/Article-Facebook-David-Super-Coup-de-Pouce1.gif" alt="" width="483" height="75" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1373/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cap sur l&#8217;assistant responsable</title>
		<link>http://www.asadco.fr/archives/1361</link>
		<comments>http://www.asadco.fr/archives/1361#comments</comments>
		<pubDate>Thu, 19 Jan 2012 21:06:40 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[Présentation]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1361</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Secrétaires, Assistants, Office Managers&#8230; Participez à la construction de votre représentation professionnelle ! Une journée pour fédérer la profession et mettre en lumière sa contribution à la performance des organisations. Conférences, Débats, Témoignages d&#8217;experts&#8230; Participez nombreux aux 1ères assises nationales de la FFMAS (Fédération française des Métiers de l&#8217;Assistanat et du Secrétariat)     Vendredi [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Secrétaires, Assistants, Office Managers&#8230;</p>
<p>Participez à la construction de votre représentation professionnelle !</p>
<p>Une journée pour fédérer la profession et mettre en lumière sa contribution à la performance des organisations.</p>
<p>Conférences, Débats, Témoignages d&#8217;experts&#8230; Participez nombreux aux</p>
<h2 style="text-align: center;">1ères assises nationales de la <a title="FFMAS" href="http://www.ffmas.com/" target="_blank">FFMAS</a></h2>
<h3 style="text-align: center;">(<a title="FFMAS" href="http://www.ffmas.com/" target="_blank">Fédération française des Métiers de l&#8217;Assistanat et du Secrétariat</a>)</h3>
<address> </address>
<address> </address>
<h2 style="text-align: center;">Vendredi 17 février 2012</h2>
<h2 style="text-align: center;">de 8h30 à 18h</h2>
<h2 style="text-align: center;">30 rue Cabanis &#8211; 75014 PARIS</h2>
<p style="text-align: center;"><a href="http://www.asadco.fr/wp-content/uploads/2012/01/FFMAS-Assises.gif"><img class="alignnone size-full wp-image-1362" title="FFMAS Assises" src="http://www.asadco.fr/wp-content/uploads/2012/01/FFMAS-Assises.gif" alt="" width="482" height="682" /></a></p>
<address> </address>
<p><a title="FFMAS Invitation assises" href="http://www.ffmas.com/evenements/invitassisesV2.pdf" target="_blank">Télécharger l&#8217;invitation</a></p>
<p><a title="FFMAS formulaire d'inscription assises" href="https://docs.google.com/spreadsheet/viewform?formkey=dDE4cHhxdm5nT2ZKV19CZGFtbWJRTEE6MQ" target="_blank">Inscription</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1361/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Acti&#8217;dej : les petits déjeuners qui font les grands réseaux</title>
		<link>http://www.asadco.fr/archives/1344</link>
		<comments>http://www.asadco.fr/archives/1344#comments</comments>
		<pubDate>Tue, 17 Jan 2012 05:32:59 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[économie]]></category>
		<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1344</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Vous êtes nouvellement implanté sur le Loiret&#8230; découvrez le territoire (bassin d&#8217;emplois, associations de chefs d&#8217;entreprise, branches professionnelles, associations de développement économique), identifier  l&#8217;offre de produits et de services de la Chambre de Commerce et d&#8217;Industrie du Loiret, partagez vos expériences, échangez vos points de vue, élargissez vos réseaux, développez votre business&#8230;. en participant au [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Vous êtes nouvellement implanté sur le Loiret&#8230;</p>
<ul>
<li>découvrez le territoire (bassin d&#8217;emplois, associations de chefs d&#8217;entreprise, branches professionnelles, associations de développement économique),</li>
</ul>
<ul>
<li>identifier  l&#8217;offre de produits et de services de la <a title="Chambre de Commerce et d'Industrie du Loiret" href="http://www.loiret.cci.fr" target="_blank">Chambre de Commerce et d&#8217;Industrie du Loiret</a>,</li>
</ul>
<ul>
<li>partagez vos expériences,</li>
</ul>
<ul>
<li>échangez vos points de vue,</li>
</ul>
<ul>
<li>élargissez vos réseaux,</li>
</ul>
<ul>
<li>développez votre business&#8230;.</li>
</ul>
<p>en participant au prochain <strong>Acti&#8217;Dej</strong> organisé par la CCIL</p>
<h2 style="text-align: center;">le 07 février 2012 &#8211; 23 place du Martroi à Orléans.</h2>
<p>Les inscriptions se font auprès de Chantal Legris (chantal.legris@loiret.cci.fr)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1344/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Augmentez votre chiffre d&#8217;affaires en développant votre réseau professionnel</title>
		<link>http://www.asadco.fr/archives/1324</link>
		<comments>http://www.asadco.fr/archives/1324#comments</comments>
		<pubDate>Sat, 14 Jan 2012 12:38:38 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[efficacité]]></category>
		<category><![CDATA[formation]]></category>
		<category><![CDATA[organisation]]></category>
		<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1324</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Un moyen &#171;&#160;gratuit&#160;&#187; de développer sa clientèle !!! Établissez des contacts sérieux avec d&#8217;autres professionnels et construisez-vous un bouche à oreille à haute efficacité ! Cette formation ASADCO, en partenariat avec le Centre de Gestion Agréé Val de France ( section formation) se déroulera : sur Orléans Le Lundi 02 avril 2012 de 9h à 17h [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Un moyen &laquo;&nbsp;gratuit&nbsp;&raquo; de développer sa clientèle !!!</p>
<p>Établissez des contacts sérieux avec d&#8217;autres professionnels et construisez-vous un bouche à oreille à haute efficacité !</p>
<p>Cette formation ASADCO, en partenariat avec le <a title="CGA Val de France" href="http://www.cga-val-de-france.fr/" target="_blank">Centre de Gestion Agréé Val de France</a> ( <a title="Les formations CGA" href="http://www.cga-val-de-france.fr/index.php/Formations/Acces-aux-formations/id-menu-121.html" target="_blank">section formatio</a>n) se déroulera :</p>
<ul>
<li>sur Orléans</li>
</ul>
<p>Le Lundi 02 avril 2012 de 9h à 17h au CGA Orléans, 52 rue d&#8217;Illiers</p>
<ul>
<li>sur Montargis</li>
</ul>
<p>Le Lundi 14 mai 2012 de 9h à 17h</p>
<h2 style="text-align: center;">Inscription avant le 23 Mars 2012</h2>
<p><a href="http://www.asadco.fr/wp-content/uploads/2012/01/2012-Augmentez-votre-chiffre-daffaires-en-développant-votre-réseau-professionnel.gif"><img class="aligncenter size-full wp-image-1325" title="2012 Augmentez votre chiffre d'affaires en développant votre réseau professionnel" src="http://www.asadco.fr/wp-content/uploads/2012/01/2012-Augmentez-votre-chiffre-daffaires-en-développant-votre-réseau-professionnel.gif" alt="" width="754" height="597" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1324/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bonne et Heureuse Année 2012</title>
		<link>http://www.asadco.fr/archives/1104</link>
		<comments>http://www.asadco.fr/archives/1104#comments</comments>
		<pubDate>Tue, 03 Jan 2012 05:18:43 +0000</pubDate>
		<dc:creator>Asadco</dc:creator>
				<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1104</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Toute l&#8217;équipe ASADCO vous souhaite une Bonne et Heureuse Année 2012 ! Merci à toutes les personnes qui nous ont fait confiance : les clients pour leur fidélité, les partenaires pour leur confiance, les participants pour leur volonté et soif d&#8217;apprendre, les amis pour leur échanges, les réseaux pour leurs partages de savoirs et expériences&#8230; [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Toute l&#8217;équipe ASADCO vous souhaite une Bonne et Heureuse Année 2012 !</p>
<p>Merci à toutes les personnes qui nous ont fait confiance :</p>
<ul>
<li>les clients pour leur fidélité,</li>
<li>les partenaires pour leur confiance,</li>
<li>les participants pour leur volonté et soif d&#8217;apprendre,</li>
<li>les amis pour leur échanges,</li>
<li>les réseaux pour leurs partages de savoirs et expériences&#8230;</li>
</ul>
<p>Bonne et Heureuse Année à tous</p>
<p><a href="http://www.asadco.fr/wp-content/uploads/2012/01/voeux-Asadco-20122.gif"><img class="aligncenter size-full wp-image-1134" title="voeux Asadco 2012" src="http://www.asadco.fr/wp-content/uploads/2012/01/voeux-Asadco-20122.gif" alt="" width="691" height="458" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1104/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Téléthon : 25 ans déjà sur Fleury les Aubrais</title>
		<link>http://www.asadco.fr/archives/1083</link>
		<comments>http://www.asadco.fr/archives/1083#comments</comments>
		<pubDate>Thu, 24 Nov 2011 18:17:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[économie]]></category>
		<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1083</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Lancement officiel du Téléthon à Fleury les Aubrais le Vendredi 02 décembre 2011 à 18h Salle François Villon à Fleury les Aubrais. Vaste programme durant ces 2 journées : chant, loto, parcours sportifs, kermesse&#8230; Vous aussi, vous pouvez aider&#8230;. venez nombreux. Programme VENDREDI 2 DECEMBRE LANCEMENT OFFICIEL 18 heures – Salle François Villon en présence [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Lancement officiel du Téléthon à Fleury les Aubrais le</p>
<h2 style="text-align: center;">Vendredi 02 décembre 2011 à 18h<br />
Salle François Villon à Fleury les Aubrais.</h2>
<p>Vaste programme durant ces 2 journées : chant, loto, parcours sportifs, kermesse&#8230;</p>
<p>Vous aussi, vous pouvez aider&#8230;. venez nombreux.</p>
<h1 style="text-align: center;">Programme</h1>
<h2>VENDREDI 2 DECEMBRE</h2>
<div id="_mcePaste">LANCEMENT OFFICIEL</div>
<div id="_mcePaste">18 heures – Salle François Villon</div>
<div id="_mcePaste">en présence de Pierre Bauchet, maire de Fleury les Aubrais,</div>
<div id="_mcePaste">Pascal Giry, notre parrain, Camélia Rodriguez, « coordinatrice Téléthon Loiret »</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div id="_mcePaste">GRANDE SOIREE THEATRALE</div>
<div id="_mcePaste">présentée par le Théâtre de l’Évolution (entrée 5 €)</div>
<div id="_mcePaste">18h45 Sketchs présentés par les enfants et les jeunes</div>
<div id="_mcePaste">20h Entracte (boissons et sandwiches)</div>
<div id="_mcePaste">20h30 Coup d’État au Nicolas 1er</div>
<h2>SAMEDI 3 DECEMBRE</h2>
<div id="_mcePaste">Animation vente des « porte-clés collectors » sur les places commerciales</div>
<div id="_mcePaste">(Intermarché – Carrefour Market – Leclerc) (de 9h à 12h)</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div id="_mcePaste">LA KERMESSE DU FLEURYTHON</div>
<div id="_mcePaste">Salle Albert Auger de 14h à 19h</div>
<div id="_mcePaste">Pour les enfants et les jeunes&#8230;</div>
<div id="_mcePaste" style="text-align: center;">
<ul>
<li style="text-align: left;">Tresses africaines et maquillage, Confection de cartes de voeux, Gâteaux et</li>
<li style="text-align: left;">brochettes de bonbons (Aider – Aider services)</li>
<li style="text-align: left;">Enveloppes surprises (Frédérique Bauchet)</li>
</ul>
<p><span style="text-decoration: underline;">Pour les sportifs, les artistes, les créatifs, les amoureux du livre&#8230;</span></p>
<ul>
<li style="text-align: left;">Parcours sportifs, Tennis de table, Baby-foot et Chamboule tout (Union du Cercle Jules Ferry)</li>
<li style="text-align: left;">Training sur vélos d&#8217;appartement (Pierre Thoret)</li>
<li style="text-align: left;">Tir à la carabine à plombs sur ballons et cibles (Didier Dauliach)</li>
<li style="text-align: left;">Un coeur brodé (De fil en idées)</li>
<li style="text-align: left;">Le tricot géant (Martine Ratajski)</li>
<li style="text-align: left;">Initiation aux échecs et tournois (L’Échiquier Fleuryssois)</li>
<li style="text-align: left;">Création de bandes dessinées &#8211; Vente de pralines et de bonbons (Association des Camerounais de France)</li>
<li style="text-align: left;">Une nouvelle vie pour les livres (vente de livres) (Bibliothèques municipales)</li>
<li style="text-align: left;">Vente de recueils d&#8217;écriture (Au fil des mots)</li>
<li style="text-align: left;">Vente d&#8217;objets relatifs aux chemins de fer (AAATV)</li>
</ul>
</div>
<div id="_mcePaste" style="text-align: left;"><span style="text-decoration: underline;">Pour les gourmands petits et grands..</span>.<br />
Le petit bar à Claude, et les filles de Festi-Fleury (Sandwiches, Frites, Boissons, Pop Corn, Gâteaux, Crêpes, Barres énergétiques, Café, Chocolat chaud, Vin chaud)<br />
<em>(tous les stands sont tenus par des associations ou par des bénévoles)</em></div>
<div style="text-align: center;"><em><br />
</em></div>
<h2><strong>LES ÉVÉNEMENTS DU 3 DÉCEMBRE</strong></h2>
<div id="_mcePaste">
<ul>
<li>De 11 h à 14 h en direct sur Radio Arc en Ciel (96.2 FM)</li>
<li>15h &#8211; Le grand échiquier en direct sur le podium</li>
<li>17h30 à 19h « Objectif Vénus en concert »</li>
</ul>
</div>
<div id="_mcePaste"><em>(Hervé COUTE, célèbre montargois, plus connu sous le pseudo de Westone45, joue et chante avec son groupe de rock (80 % de reprises des années 70-80, 20% de compositions)</em></div>
<div id="_mcePaste"><em>(pour la première fois, Objectif Vénus et Claudia se produiront ensemble pour quelques morceaux de leur répertoire)</em></div>
<h2>SAMEDI A 20 HEURES</h2>
<div id="_mcePaste">
<ul>
<li>Inoubliable soirée orientale</li>
<li>Tour de chant de Claudia, jeune chanteuse Fleuryssoise</li>
<li>Mélissa et ses danseuses orientales</li>
<li>Martial le magicien</li>
<li>Défilé de mode camerounaise</li>
<li>Repas Tajine</li>
</ul>
</div>
<div id="_mcePaste" style="text-align: center;"><em>(à réserver obligatoirement avant le 30 novembre auprès de Claude Legris – 06 75 52 22 49 – 10 € par personne)</em></div>
<div id="_mcePaste" style="text-align: center;"><em>Les pâtisseries orientales sont confectionnées par des femmes fréquentant les maisons pour tous</em></div>
<div id="_mcePaste"></div>
<div>
<ul>
<li>Soirée dansante animée par &laquo;&nbsp;DJ Jackie&nbsp;&raquo; (Ambiance musicale et sonorisation Jackie Marsaudon)</li>
<li>Secourisme et protection des personnes (Unité Mobile de Premier Secours et d&#8217;Assistance Médicale 45)</li>
</ul>
</div>
<h2>REPORTAGE PHOTO DES TROIS JOURNEES</h2>
<div id="_mcePaste">Groupement des Artistes Orléanais</div>
<div id="_mcePaste">ORGANISATION</div>
<div id="_mcePaste">&#8212;&#8212;</div>
<div id="_mcePaste">fleurython45@orange.fr</div>
<div id="_mcePaste">201 rue de la barrière saint Marc</div>
<div id="_mcePaste">45400 – Fleury les Aubrais &#8211; <strong>02 38 71 04 52</strong></div>
<div><strong><br />
</strong></div>
<div id="_mcePaste">POUR SOUTENIR L&#8217;ACTION DE L&#8217;ASSOCIATION FRANCAISE CONTRE LES MYOPATHIES</div>
<div id="_mcePaste">La Boutique du Téléthon</div>
<div id="_mcePaste">vous proposera samedi de 14h 19h salle Albert Auger</div>
<div id="_mcePaste">des porte-clés collectors 2011, des ballons pour les enfants et la possibilité de commander d&#8217;autres objets à retirer ensuite à « La Jardinerie Fleuryssoise »</div>
<div id="_mcePaste">Des urnes seront installées dans la salle pour collecter vos dons</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div id="_mcePaste">Exposition sur les maladies génétiques et sur l&#8217;action de l&#8217;AFM dimanche 4 DECEMBRE</div>
<div id="_mcePaste">&#8212;&#8212;&#8212;&#8212;&#8211;</div>
<div id="_mcePaste">Sur le marché de 9h00 à 12h00</div>
<div id="_mcePaste">La Boutique du Téléthon</div>
<div id="_mcePaste">Porte-clés collectors – Vin chaud – Chocolat chaud – Viennoiseries</div>
<div id="_mcePaste">11 heures</div>
<div id="_mcePaste">Batuccada des enfants des maisons pour tous</div>
<div id="_mcePaste"></div>
<h2>CONCERT DE NOEL EGLISE SAINT ANDRE &#8211; 15 HEURES</h2>
<div id="_mcePaste">Proposé par le conservatoire de musique et de danse Maurice Ravel</div>
<div id="_mcePaste">Les programmes seront vendus au profit du Téléthon</div>
<div id="_mcePaste">MAIS AUSSI …</div>
<div id="_mcePaste">Des points de vente des porte-clés collectors dans vos commerces de proximité</div>
<div id="_mcePaste">De nombreuses associations qui recueilleront des fonds et auprès desquelles vous pourrez vous procurer les « porte-clés collectors »</div>
<div></div>
<div id="_mcePaste">Samedi 26 novembre à 19h Salle François Villon &#8211; Vente de recueils par l&#8217;association « Au fil des mots »</div>
<div></div>
<div id="_mcePaste">Dimanche 27 novembre à 14 heures, LOTOS des maisons pour tous JeanVilar, Jean Gabin et Jacques Tati</div>
<div></div>
<div id="_mcePaste">Mardi 29 novembre et vendredi 2 décembre de 15h à 19h</div>
<div id="_mcePaste">Bibliothèque « Les Jacobins » &#8211; Ateliers d&#8217;écriture à la carte</div>
<div></div>
<div id="_mcePaste">Mardi 29 (15h-19h), mercredi 30 (10h-18h) et vendredi 2 (15h-19h),</div>
<div id="_mcePaste">Vente de livres à la bibliothèque « Les Jacobins »</div>
<div></div>
<div id="_mcePaste">Samedi 3 décembre Rencontres de football &#8211; Stade Fernand Sastre</div>
<div id="_mcePaste">Rassemblement U9 ( foot d&#8217;animation) de 10h00 à 12h00</div>
<div id="_mcePaste">Rassemblement Open Féminin U11F de 14h00 à 16h30</div>
<div id="_mcePaste"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1083/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soirée DCF  à St Jean de Braye</title>
		<link>http://www.asadco.fr/archives/1016</link>
		<comments>http://www.asadco.fr/archives/1016#comments</comments>
		<pubDate>Thu, 09 Jun 2011 04:33:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=1016</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

Hier soir, j&#8217;ai eu l&#8217;occasion de participer à la soirée DCF (dont je fais partie en tant que membre) sur le thème : Semaine nationale de la Performance commerciale avec en thème principal : les outils numériques au service de l&#8217;entreprise Une première partie avec Christian VANDEN BERGHEN (EASI) : les &#171;&#160;4C &#160;&#187; du web [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>Hier soir, j&#8217;ai eu l&#8217;occasion de participer à la soirée DCF (dont je fais partie en tant que membre) sur le thème : <strong>Semaine nationale de la Performance commerciale</strong> avec en thème principal :</p>
<p style="text-align: center;">les outils numériques au service de l&#8217;entreprise</p>
<p>Une première partie avec Christian VANDEN BERGHEN (EASI) : les &laquo;&nbsp;4C &nbsp;&raquo; du web :</p>
<ul>
<li>connaître,</li>
<li>communiquer,</li>
<li>collaborer,</li>
<li>commercer</li>
</ul>
<p>Suivie de témoignages de 4 entreprises locales présentes sur le web :</p>
<ul>
<li><a href="http://www.kapweb.com/fr/internet-sites-orleans-loiret-applications-creation-conception-developpement.html" target="_blank">Kapweb</a></li>
<li><a href="http://www.bebloom.com/boutique.asp" target="_blank">Bebloom</a></li>
<li><a href="http://www.bellamaman.com/" target="_blank">Bella maman</a></li>
<li><a href="http://www.roadtohotels.com/" target="_blank">Roadtohotels</a></li>
</ul>
<p>et enfin, remise des trophées par la Caisse d&#8217;Epargne aux 2 lauréats récompensés pour leur performance commerciale sur le web : Bella maman et Bebloom.</p>
<p>Un dîner attendait la quarantaine de convives (DCF et invités) , pour clôturer cette  soirée au <a href="http://www.accorhotels.com/fr/hotel-1075-novotel-orleans-charbonniere/index.shtml" target="_blank">Novotel St Jean de Braye</a></p>
<p>Merci à tous les organisateurs pour cette soirée riche en informations et en parcours et grand bravo aux 2 lauréats.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/1016/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fédération DCF : semaine nationale de la performance commerciale</title>
		<link>http://www.asadco.fr/archives/985</link>
		<comments>http://www.asadco.fr/archives/985#comments</comments>
		<pubDate>Sat, 07 May 2011 19:04:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Orléans]]></category>
		<category><![CDATA[réseau]]></category>
		<category><![CDATA[commercial]]></category>
		<category><![CDATA[DCF]]></category>
		<category><![CDATA[orléans]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[SNPC]]></category>

		<guid isPermaLink="false">http://www.asadco.fr/?p=985</guid>
		<description><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

du 06 au 10 juin 2011 aura lieu la semaine de la performance commerciale. Vous performez en matière de Business sur le Web, participez à la SNPC en déposant votre candidature !!!! En effet, la fédération DCF (Dirigeants Commerciaux de France) ouvre cette année la compétition sur le thème du Web Business, moyen de récompenser [...]]]></description>
			<content:encoded><![CDATA[


<script language="Javascript">	
	//DD_roundies.addRule('div.arrondi', '15px');
	jQuery.fn.jmp3 = function(passedOptions){
		// hard-wired options
		var playerpath = "http://www.asadco.fr/wp-content/plugins/cispm-portfolio/";			// SET THIS FIRST: path to singlemp3player.swf

		// passable options
		var options = {
			"filepath": "",			// path to MP3 file (default: current directory)
			"backcolor": "",									// background color
			"forecolor": "",								// foreground color (buttons)
			"width": 20,										// width of player
			"repeat": "no",										// repeat mp3?
			"volume": "",										// mp3 volume (0-100)
			"autoplay": "false",								// play immediately on page load?
			"showdownload": "false",								// show download button in player
			"showfilename": "false"								// show .mp3 filename after player
		};
		
		// use passed options, if they exist
		if (passedOptions) {
			jQuery.extend(options, passedOptions);
		}
		
		// iterate through each object
		return this.each(function(){
			// filename needs to be enclosed in tag (e.g. <span class='mp3'>mysong.mp3</span>)
			var filename = options.filepath + jQuery(this).html();
			//alert(filename);
			// do nothing if not an .mp3 file
			var validfilename = filename.indexOf(".mp3");
			if (validfilename == -1) { return false; }
			// build the player HTML
			var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
			mp3html += 'width="' + options.width + '" height="20" ';
			mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
			mp3html += '<param name="movie" value="' + playerpath + 'singlemp3player.swf?';
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" />';
			mp3html += '<param name="wmode" value="transparent" />';
			mp3html += '<embed wmode="transparent" width="' + options.width + '" height="20" ';
			mp3html += 'src="' + playerpath + 'singlemp3player.swf?'
			mp3html += 'showDownload=' + options.showdownload + '&file=' + filename + '&autoStart=' + options.autoplay;
			mp3html += '&backColor=' + options.backcolor + '&frontColor=' + options.forecolor;
			mp3html += '&repeatPlay=' + options.repeat + '&songVolume=' + options.volume + '" ';
			mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
			mp3html += '</object>';
			// don't display filename if option is set
			if (options.showfilename == "false") { jQuery(this).html(""); }
			jQuery(this).prepend(mp3html+"&nbsp;");
			
			// Eolas workaround for IE (Thanks Kurt!)
			if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; }
		});
	};
	
	jQuery(document).ready(function($){
		$("#cispm-tabs").tabs({
					});
			
		nb_web = $("#cispm_web_nb_jquery").val();
		if(nb_web == "") {
			nb_web = 0;
		}
	
		for(i=1;i<=nb_web;i++) {
			variable_web = "#cispm_web_lien_jquery"+i;
			
			$(variable_web).fancybox({
				'width'				: '%',
				'height'			: '%',
				'autoScale'			: false,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'type'				: 'iframe',
				'titlePosition'		: ''
			});	
		}
		
		nb_mus = $("#cispm_mus_nb_jquery").val();
		if(nb_mus == "") {
			nb_mus = 0;
		}
	
		for(i=1;i<=nb_mus;i++) {
			variable_mus = "#cispm_mus_lien_jquery2"+i;

			$(variable_mus).fancybox({
				'titlePosition'		: '',
				'transitionIn'		: '',
				'transitionOut'		: ''
			});	
			
			variable_mus2 = "#cispm_mus_lien_player"+i;

			$(variable_mus2).jmp3();
		}

		nb_img = $("#cispm_img_nb_jquery").val();
		if(nb_img == "") {
			nb_img = 0;
		}
		
		for(i=1;i<=nb_img;i++) {
			variable_img = "a#cispm_img_lien_jquery"+i;
			
			$(variable_img).fancybox({
				'titleShow'		: true,
				'transitionIn'		: '',
				'transitionOut'		: '',
				'titlePosition'		: ''
			});
		}

		$("a#cispm-tip4").click(function() {
			$.fancybox({
					'padding'		: 0,
					'autoScale'		: false,
					'transitionIn'	: '',
					'transitionOut'	: '',
					'title'			: this.title,
					'width'			: 300,
					'height'		: 300,
					'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
					'type'			: 'swf',
					'swf'			: {
						 'wmode'		: 'transparent',
						'allowfullscreen'	: 'true'
					}
			});
			return false;
		});
	});
</script>

<style>
	<!--
	
	#cispm-tabs-1 {

	}
	
	.ui-widget-header {
		background-color:#;
		border:1px solid #;
		color:#444444;
		font-weight:bold;
	}
	
	.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
		color:yellow;
	}
	
	.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
		color:#;
	}
	.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus{
		background:#;
		border: 1px solid #;
	}
	
	#table_onglet1 {
		
	}
	
	#table_onglet2 {
	
	}
	
	#cispm-tabs ul {
		list-style-type: inherit;
		text-indent:0px;
	}
	
	h3 .titre_cispm {
		padding: 0;
		margin: 0;
	}
	
	#cispm-tabs ul li, #cispm-tabs ol li {
		list-style-position:inside;
		padding-left:10px;
	}
	
	#table_onglet2 tr td {
		border:none;
	}
	
	#table_onglet2 {
		border:none;
	}
	-->
</style>

<p>du 06 au 10 juin 2011 aura lieu la semaine de la performance commerciale.</p>
<p>Vous performez en matière de Business sur le Web, participez à la SNPC en déposant votre candidature !!!!</p>
<p>En effet, la fédération DCF (Dirigeants Commerciaux de France) ouvre cette année la compétition sur le thème du Web Business, moyen de récompenser votre domaine d&#8217;excellence !</p>
<ul>
<li>4 lauréats</li>
<li>200 trophées</li>
<li>20 000 entreprises en compétition&#8230;..</li>
</ul>
<p>Si vous êtes intéressé(e) et souhaitez obtenir un dossier de candidature : contact@asadco.fr</p>
<h1 style="text-align: center;">Avec la Fédération DCF : Vivez La fonction commerciale autrement !</h1>
<p style="text-align: center;"><a href="http://www.dcf-orleans.fr/" target="_blank"><img class="size-full wp-image-986 aligncenter" title="DCF : Semaine nationale de la Performance commerciale" src="http://www.asadco.fr/wp-content/uploads/2011/05/SNPC-1ère-page.jpg" alt="" width="589" height="416" /></a></p>
<p style="text-align: center;"><a href="http://www.dcf-orleans.fr/" target="_blank"><img class="size-full wp-image-987 aligncenter" title="DCF : Semaine Nationale de la Performance Commerciale" src="http://www.asadco.fr/wp-content/uploads/2011/05/SNPC-2ème-page.jpg" alt="DCF Orléans" width="589" height="415" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.asadco.fr/archives/985/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

