// JavaScript Document
// For tutor reporting
//Load up jQuery
$(document).ready(function() {
	$("div.photo_gallery a").each(function(){
		$(this).attr("rel","imagebox");	
	});
	/* float llama pics left */
	$("div.llamapost a img").each(function(){
		$(this).parent("a").addClass("llamapic");
		$(this).parent("a").attr("rel","imagebox");
	});
	/* img box --MUST-- be init-ed last */
	$.ImageBox.init(
			{
				loaderSRC: '/wp-content/themes/BlueMeadow/images/imagebox/loading.gif',
				closeHTML: '<img src="/wp-content/themes/BlueMeadow/images/imagebox/close.jpg" />'
			}
		);
});