(function($){

$(document).ready(function() {
	$('.th-holder a').click(function() {
		var myURL = $(this).attr('href');
		$('.img-holder img').attr('src', myURL);
		return false;
	});
	
	$('.page .single-cnt .post-entry .slidepress-gallery').each(function() {
		var phh = $(this).parents('.post:eq(0)').find('.post-head').height();
		var mt = parseInt($(this).css('margin-top'));
		$(this).css('margin-top', mt - phh);
	});
	
});

})(jQuery)
