// JavaScript Document

$(document).ready( function()
{ 
	 
	var titleShow = false ;
	$("a[id='link_exemple']").click(function(event){
		event.preventDefault();
		var width =  parseInt($(this).attr('widtho'))+4;
		var height =  parseInt($(this).attr('heighto'))+4;
		var href = $(this).attr('href');
		var titre = $(this).attr('titro');
		$.fancybox({
		'title'			: titre ,
		'href'			: href ,
		'width'			: width ,
		'height'		: height ,
		'scrolling'		: 'auto',
		'titleShow'		: true ,
		'titlePosition'	: 'outside',
		'transitionIn'	: 'elastic' ,
		'transitionOut'	: 'elastic' ,
		'type'			: 'iframe' ,
		'showCloseButton'	:true,
		'autoDimensions': true 
		});
		$.fancybox.resize();
	});
});


