// 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' + "\\n" + 'and 720 pixels in height for vertical images. Images are' + "\\n" + 'suitable for 10 x 8 for use on the web or 6 x 4 for use in print.' + "\\n" + 'To change the image to print size without losing image' + "\\n" + 'quality, ensure that the resample option is disabled in the' + "\\n" + 'photo editing software you are using. To maintain' + "\\n" + 'proportion in the image, look for and enable constrain' + "\\n" + 'proportions within your photo editing software. If you know' + "\\n" + 'what size you wish to print, enter the dimensions for the' + "\\n" + 'print size. Should you require a larger print size than is' + "\\n" + 'available on this website, please eMail' + "\\n" + 'info@raed8design.com directly stating image(s) and size(s)' + "\\n" + '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') + '" alt="'+ $(this).find('img').attr('alt') +'" />';
		var full_html = '<p class="gallery_img">' + 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:'438px'},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:'438px'},300,function () {
				$(this).attr('innerHTML',full_html);															   
			});
		}
		return false;
	});
	
});
