Chiller arrows.

This commit is contained in:
Jason A. Donenfeld
2011-05-08 02:57:27 -04:00
parent 206c7305b3
commit e5f9ec18ea
3 changed files with 16 additions and 7 deletions

View File

@ -300,6 +300,12 @@ $(document).ready(function() {
$("#photo-box").mouseleave(function() {
$("#photo-links").stop().fadeOut("slow");
});
$("#next, #back").mouseenter(function() {
$(this).fadeTo("slow", 1);
});
$("#next, #back").mouseleave(function() {
$(this).fadeTo("slow", 0.35);
});
$("#metadata-link").click(function() {
if (!$("#metadata").is(":visible"))
$("#metadata").stop()