$(document).ready(function(){
	$("a[rel='example1']").colorbox();
	$("a[rel='example2']").colorbox();
	
	$('#info_right').bind({
		click: function(){
			window.location = './docs/jean_braden.pdf';	
		},
		mouseenter: function(){
			col = $(this).children().css('background-color');
			$(this).children().css('background-color', '#f8f8f8');
		},
		mouseleave: function(){
			$(this).children().css('background-color', col);
		}
	});
});

