jQuery(document).ready(function(){ 
	
jQuery(".small").click(function(){ 
	var full = jQuery(this).next(".full"); 
	jQuery(".full").hide().removeClass("on");
	jQuery(".small").show();
	jQuery(full).show(0).addClass("on");
	jQuery(this).hide(0); 	
	jQuery.scrollTo(jQuery(full), 500, {axis:'x', offset:{top:-20, left:-100} });
	return false;
});

jQuery(".full img").click(function(){ 
	jQuery(".on").prev(".small").show(0);
	jQuery(".on").hide(0).removeClass("on");
	return false;
});

jQuery("#about-button").click(function(){ 
	jQuery("#about").show();
	return false;
});
jQuery(".hide").click(function(){ 
	jQuery("#about").hide();
});
jQuery(".small").tooltip({
	track: true
});

	jQuery("p.wp-caption-text").each(function(n) {
		this.innerHTML = this.innerHTML.replace(new RegExp("{link:([^}]*)}([^{]*){/link}"), "<a href=\"$1\">$2</a>");
		});
	

});