
// Give image links in Slidedeck hover effect

	$(document).ready(function(){

		$(".slidedeck .panel a img").css({
			opacity: 1.0
			});
		$(".slidedeck .panel a img").hover(function() {
		$(this).stop().animate({
			opacity: 0.85
			}, 'fast');
		}, function() {
		$(this).stop().animate({
			opacity: 1.0
			}, 'fast');
		});
	});

 

