// Load up the functions
$(document).ready(function(){
	$('#homegallery .gallerypic a').lightBox();
	$('#gallery a').lightBox();
	gallerycaptions();
	swapEmails();
	gallerylink();
	mainimagecaption();
});

function gallerycaptions() {
	$(".gallerypic a").each(
		function(){
			var caption = $(this).attr("title");
			$(this).siblings().html(caption);
		});
};

function swapEmails() {
  $("span.email").each(
  		function(){
			var fullemail = '<a title="this will open your email program" href="&#109;&#097;&#105;&#108;&#116;&#111;:&#121;&#101;&#115;&#064;&#112;&#114;&#111;&#112;&#111;&#115;&#101;&#046;&#105;&#101;">&#121;&#101;&#115;&#064;&#112;&#114;&#111;&#112;&#111;&#115;&#101;&#046;&#105;&#101;</a>' 
			$(this).html(fullemail);
		});   
};

function gallerylink() {
	$('#homegallerytext h3').css("cursor","pointer").click(function () {
		var addr = $(this).siblings("p").children('a').attr("href");
		window.location = addr;
      });	
};

function mainimagecaption() {
	var caption = $("#mainimage img:first-child").attr("title");
	$("p#desc").html(caption);
};
