$(document).ready(function(){ $(".fabe").fadeTo("fast", 1.0); $(".fabe").hover(function(){ $(this).fadeTo("fast", 0.8); },function(){ $(this).fadeTo("fast", 1.0); }); $(".fabemorefast").fadeTo("fast", 1.0); $(".fabemorefast").hover(function(){ $(this).fadeTo("fast", 0.6); },function(){ $(this).fadeTo("fast", 1.0); }); $(".fabemoreslow").fadeTo("slow", 1.0); $(".fabemoreslow").hover(function(){ $(this).fadeTo("slow", 0.6); },function(){ $(this).fadeTo("slow", 1.0); }); $(".fabeslow").fadeTo("slow", 1.0); $(".fabeslow").hover(function(){ $(this).fadeTo("slow", 0.8); },function(){ $(this).fadeTo("slow", 1.0); }); $(".rightarea img").fadeTo("slow", 0.5); $(".rightarea img").hover(function(){ $(this).fadeTo("fast", 1.0); },function(){ $(this).fadeTo("slow", 0.5); }); $(".cartimg a img ").fadeTo("fast", 0.5); $(".cartimg a img ").hover(function(){ $(this).fadeTo("slow", 1); },function(){ $(this).fadeTo("fast", 0.5); }); $(".imgbutton, .esbutton, imgbuttonen, .esbutton-en").fadeTo("fast", 1); $(".imgbutton, .esbutton").hover(function(){ $(this).fadeTo("slow", 0.7); },function(){ $(this).fadeTo("fast", 1); }); });