/* Fade - Thumbnails on portfolio pages */

$(document).ready(function(){
$(".muk_img, .slidetwo").fadeTo("slow", 0.2);
$(".muk_img, .slidetwo").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.2);
});
});

$(document).ready(function(){
$(".wwa, .blogthb").fadeTo("slow", 0.4);
$(".wwa, .blogthb").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.4);
});
});

$(document).ready(function(){
$(".navlink").fadeTo("slow", 0.4);
$(".navlink").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.4);
});
});

$(document).ready(function(){
$(".arty").fadeTo("slow", 0.6);
$(".arty").hover(function(){
$(this).fadeTo("slow", 1.0);
},function(){
$(this).fadeTo("slow", 0.6);
});
});

