// JavaScript Document

$(document).ready(function() {
	
	$('.gallery_thumb_row').find('a').click(function () {

		var high_res_msg = 'Gallery images are sized to 720 pixels in width for horizontal and 720 pixels in height for vertical images. Images are suitable for 10 x 8 for use on the web or 6 x 4 for use in print. To change the image to print size without losing image quality, ensure that the resample option is disabled in the photo editing software you are using. To maintain proportion in the image, look for and enable constrain proportions within your photo editing software. If you know what size you wish to print, enter the dimensions for the print size. Should you require a larger print size than is available on this website, please eMail info@raed8design.com directly stating image(s) and size(s) needed.';


		var high_res_link = '';
		if ($(this).attr('highres')!='') {
			high_res_link = '<br /><a href="gallery_hires.php?img='+ $(this).attr('highres')  +'" onclick="alert(\'' + high_res_msg + '\');" >download this image</a>';
		}
		var epost_link = '<a href="epost.php?img='+ $(this).attr('epostcard') +'">send this image as an ePostcard</a>';
		var full_img_tag = '<img height="325" src="' + $(this).attr('href') + '" />';
		var full_html = '<p>' + full_img_tag + '</p>';
		full_html += '<p class="gallery_caption">'+ $(this).find('img').attr('alt') +'</p>';
		full_html += '<p class="gallery_full_links">'+ epost_link + high_res_link + '</p>';
		
		if ($(this).parent().next('.gallery_full_div').attr('innerHTML') != '') {
			
			$(this).parent().next('.gallery_full_div').attr('innerHTML',full_html);
			
		} else if ($(this).parent().prev('.gallery_full_div').attr('innerHTML') != '' && $(this).parent().prev('.gallery_full_div').length !=0) {

			$(this).parent().prev('.gallery_full_div').attr('innerHTML',full_html);
			
<!-- working here -->	

		} else if ($(this).parent().prevAll('.gallery_full_div').filter(function(index){return $(this).attr('innerHTML')!='';}).size()!=0) {
			
			$('.gallery_full_div').filter(function(){return $(this).css('display')!='none'}).animate({height:'0'},300,function () {
				$(this).attr('innerHTML','').css('display','none');													  
			});
					
			$(this).parent().prev('.gallery_full_div').show(0).animate({height:'440px'},300,function () {
				$(this).attr('innerHTML',full_html);															   
			});

<!-- working here -->		

		} else {
		

			$('.gallery_full_div').filter(function(){return $(this).css('display')!='none'}).animate({height:'0'},300,function () {
				$(this).attr('innerHTML','').css('display','none');													  
			});
					
			$(this).parent().next('.gallery_full_div').show(0).animate({height:'440px'},300,function () {
				$(this).attr('innerHTML',full_html);															   
			});
		}
		return false;
	});
	
});