$(document).ready(function() {

	// Cufon activation for titles
	Cufon.replace('h2.post-title');
  Cufon.replace('h2.page-title');
  Cufon.replace('span.another-title');

	$('#nav ul li ul.sub-menu').parent().hover(
		function () {
			$(this).find('ul.sub-menu').fadeIn(300);
		},
		function () {
			$(this).find('ul.sub-menu').fadeOut(300);
		}
	);
	
	$('#nav ul li ul.sub-menu').parent().find('a:first').removeAttr('href').css('cursor', 'pointer');
	
	$('a.comments-link').click(function() {
		$('.fade-bg').fadeIn(400);
		$('#respond').fadeIn(800);
	});
	
	$('.close-comment').click(function() {
		$('#respond').fadeOut(400);
		$('.fade-bg').fadeOut(800);
	});
	
	$('a.email-a-friend').click(function() {
		$('.fade-bg').fadeIn(400);
		$('.email-form').fadeIn(800);
	});
	
	$('.close-comment').click(function() {
		$('.email-form').fadeOut(400);
		$('.fade-bg').fadeOut(800);
	});
	
	$('.like-photo-wrapper img').attr('width', '860').removeAttr('height');
	
});
