$(document).ready(function(){
	
	// pub flash
	$("#cadre_pub_droit").flash({
		src: "/img/pubs_bandeaux/pub_home.swf",
		width: 250,
		height: 250,
		wmode: "transparent"
	});
	
	// bandeaux
	$("#bandeau_1").flash({
		src: "/img/pubs_bandeaux/bandeau_1.swf",
		width: 490,
		height: 200,
		wmode: "transparent"
	});
	$("#bandeau_2").flash({
		src: "/img/pubs_bandeaux/bandeau_2.swf",
		width: 490,
		height: 200,
		wmode: "transparent"
	});

	$('#cycle')
	.before('<div id="puces">') 
	.cycle({ 
	    fx: 'scrollDown',
	    pagerEvent: 'mouseover',
	    speed: 600, 
	    timeout: 20000,
	    pause: 1,
	    pager:  '#puces' 
	});
	
	$('#puces a').mouseover(function() {
        $('#cycle').cycle('pause');
    });
    $('#puces a').mouseout(function() {
        $('#cycle').cycle('resume');
    });

});
