// JavaScript Document
// For tutor reporting
//Load up jQuery
$(document).ready(function() {
	$(".llamabox a").each(function(){
		if ($(this).attr("href").search(/[^\s]+(?=\.(jpg|JPG|gif|png))/) != -1) {
			$(this).attr("rel","imagebox");	
		}
	});
	$(".soldbox a").each(function(){
		if ($(this).attr("href").search(/[^\s]+(?=\.(jpg|JPG|gif|png))/) != -1) {
			$(this).attr("rel","imagebox");	
		}
	});
	$(".soldbox").each(function(){
		$(this).append("<img src=\"/wp-content/themes/default/images/thank_you.gif\" style=\"border:none;\" /><div id=\"tinyClear\"></div>");
	});
	$.ImageBox.init(
			{
				loaderSRC: '/wp-content/themes/default/images/imagebox/loading.gif',
				closeHTML: '<img src="/wp-content/themes/default/images/imagebox/close.jpg" />'
			}
		);
});