/* 
do-jquery.js for 3k
version 2010-07-01 (msc) 
controls what jQuery shall do:
*/




$(document).ready(function() { 
	
  
	$('a.lightbox').lightBox(); // Select all links with lightbox class
	$('a.lightbox').append('<span class="enlarge"></span>');
	
	$("#content img[title]").tooltip({ position: "bottom center", effect: 'slide'});

			
});
/* END document ready function */






