$(function() {

	$('.slideshow, .carousel').slide();
	
	
	
	// Modales
	
	$('#right-sidebar .panel.half, #panels .panel.half').click(function(e){
		e.preventDefault();
		$('#mod_affreter').show();
		$('div.overlay').show();
		return false;
	});
	
	$('#right-sidebar .panel.last, #panels .panel.last').click(function(e){
		e.preventDefault();
		$('#mod_docu').show();
		$('div.overlay').show();
		return false;
	});
	
	$('.modal a.close').click(function(e){
		e.preventDefault();
		$(this).closest('.modal').hide();
		$('div.overlay').hide();
		return false;
	});
	
	
});

