﻿
//fead
$('a').hover(function() {
	$(this).stop(true, false).animate({
		opacity: .5
	}, {
		duration: 500
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity: 1
	}, {
		duration: 500
	})
});

//no
$('#slideshow a').hover(function() {
	$(this).stop(true, false).animate({
		opacity: 1
	}, {
		duration: 0
	})
}, function() {
	$(this).stop(true, false).animate({
		opacity: 1
	}, {
		duration: 0
	})
});

