// JavaScript Document
$(document).ready(function(){
	$("#rightbar #rightContentText img").click(function(){
		$(this).colorbox({ href:$(this).attr('src'), opacity:0.8, overlayClose:false, height:'auto' });
		setTimeout(function(){$('#colorbox #cboxContent').css({'height':'400px'});},300);
	});
});
