$('#diapo').cycle({ 
    fx:     'scrollHorz',
    timeout: 0,
	speed:   1100,
	prev:    '#prev',
	next:    '#next'
});
$('#news').cycle({ 
    fx:     'scrollHorz',
	timeout: 9000,
	speed:  1000
});
$('#communaute').cycle({ 
    fx:     'scrollHorz',
	speed:  9000
});
var width_screen = window.screen.width;
var height_screen = window.screen.height;
$(document).ready(function(){ 
	if(height_screen < '800')
	{
		$("object,embed").css({width : '350px',height : '275px'});	
	}
	if(height_screen == '800')
	{
		$("object,embed").css({width : '450px',height : '330px'});
		$("#pic_alex").html('<img src="images/alex-1024.png">');
		$("#pic_alex").css({"height":'264px'});
		
	}
	if(height_screen >= '1024')
	{
		$("object,embed").css({width : '570px', height : '450px'});
		$("#pic_alex").html('<img src="images/alex-1280.png">');
		$("#pic_alex").css({"height":'367px'});
		$("#menu").css({"font-size":'20px', "height":'30px'});
		$("#infos").css({"font-size":'18px', "margin-left":'40%'});
	}
});