$(document).ready(function ()  {
	// OPACITY OF BUTTON SET TO 50%
	$("ul#latestworkgallery li img").css("opacity","0.85");
			
	// ON MOUSE OVER
	$("ul#latestworkgallery li img").hover(function () {
											  
	// SET OPACITY TO 100%
	$(this).stop().animate({
		opacity: 1.0
		}, 650);
	},
			
	// ON MOUSE OUT
	function () {
				
	// SET OPACITY BACK TO 50%
	$(this).stop().animate({
		opacity: 0.85
			}, "slow");
		});
		
	$('.toggleMe').click(function () {
		$('#respond').slideToggle("fast");
	});
	
	$('.toggleMe-2').click(function () {
		$('#comments').slideToggle("fast");
	});
});




