$(document).ready(function() {
						   
	$(".vignettes IMG[rel]").css({
		"opacity": 0.7,
		"height": 73,
		"width": 115
	});

	var aleatoire = Math.random();
	var so = new SWFObject('eveche.swf', 'myheader', '640', '480', '9', '#FFFFFF');
	so.addParam('menu', 'false');
	so.addParam('allowFullScreen', 'true');
	so.addParam('wmode', 'transparent');
	so.write('visionneuse');
	
	$("IMG[rel='eveche']").css({
		"opacity": 1.0,
		"height": 104,
		"width": 164
	});
	
	$(".vignettes IMG").click(function() {
		change_visite($(this).attr("rel"));
	});

});

function change_visite(quoi) {
	
	$(".vignettes IMG[rel]").animate({
		"opacity": 0.7,
		"height": 73,
		"width": 115
	},500);
	
	$("IMG[rel='"+quoi+"']").animate({
		"opacity": 1.0,
		"height": 104,
		"width": 164
	},500);
	
	var aleatoire = Math.random();
	var so = new SWFObject(quoi+'.swf', 'myheader', '640', '480', '9', '#FFFFFF');
	so.addParam('menu', 'false');
	so.addParam('allowFullScreen', 'true');
	so.addParam('wmode', 'transparent');
	so.write('visionneuse');
	
}

function ouvr_en_frame(url,w,h) {
	$.facebox("<iframe src='"+url+"' style='width: "+w+"px; height: "+h+"px; border: 0px;'></iframe>");	
}