// JavaScript Document

$(document).ready(function(){
	if ('.single-news') {
	
		//$('.single-news .content img').hide();
		$('.single-news .content img[src*="_thumb"]').appendTo('#gallery-image');
		$(".single-news .content img.single").show();
		
		$("#gallery-image img[src*='_thumb']").each(function() {
															 
				$(this).show();
				var $src = $(this).attr('src');
				
				$src = $src.replace(/_thumb/,''); 
				$(this).wrap('<a href="' + $src + '" class="gallery-link"></a>');
		});
		
		$("a.gallery-link").fancybox();
	}

	if ('.single-blog') {
	
		//$('.single-blog .content img').hide();
		$('.single-blog .content img[src*="_thumb"]').appendTo('#gallery-image');
		$(".single-blog .content img.single").show();
		
		$("#gallery-image img[src*='_thumb']").each(function() {
															 
				$(this).show();
				var $src = $(this).attr('src');
				
				$src = $src.replace(/_thumb/,''); 
				$(this).wrap('<a href="' + $src + '" class="gallery-link"></a>');
		});
		
		$("a.gallery-link").fancybox();
	}

});
