// JavaScript Document

$(document).ready(function() {
						   

$('a#close').hide();

$('a#close').click(function() {
$("div#showimage").animate({ 
        opacity: 0,
		height: "0px"
      }, 600 );
$("div#showimage img").fadeOut(600);
$('a#close').hide();
return false;
});


$('#email').click(function() {
$('#email').html(" <a href=\"mailto:web@palmerstonretreat.com.au\">web@palmerstonretreat.com.au</a>");
});

$('div#images a').click(function() {
var title = $(this).attr("href");
var caption = $(this).attr("title");
$("div#showimage").animate({ opacity: 0, height: "256px"}, 600, function(){
$('a#close').html("<span class=\"aspan\">"+caption+"</span><img src=\"images/close.gif\" /><span class=\"closetxt\">Close</span>");
$('a#close').show();
$('div#showimage').html("<img src=\""+title+"\" />");
})
.animate({ opacity: 1}, 600)
return false;
});



///////////////////////////////////////////////////////////

						   

$('a#close2').hide();

$('a#close2').click(function() {
$("div#showimage2").animate({ 
        opacity: 0,
		height: "0px"
      }, 600 );
$("div#showimage2 img").fadeOut(600);
$('a#close2').hide();
return false;
});


$('div#images2 a').click(function() {
var title = $(this).attr("href");
var caption = $(this).attr("title");
$("div#showimage2").animate({ opacity: 0, height: "256px"}, 600, function(){
$('a#close2').html("<span class=\"aspan\">"+caption+"</span><img src=\"images/close.gif\" /><span class=\"closetxt\">Close</span>");
$('a#close2').show();
$('div#showimage2').html("<img src=\""+title+"\" />");
})
.animate({ opacity: 1}, 600)
return false;
});
});
