// Fade in and out on SMALL Teaser Images.
$(document).ready(function(){
$(".desc").fadeTo("fast", 0);
$(".desc").hover(function(){
$(this).fadeTo("slow", 0.65);
},function(){
$(this).fadeTo("fast", 0);
});
});

// Fade in and out on LARGE Teaser Image.
$(document).ready(function(){
$(".bigdesc").fadeTo("fast", 0);
$(".bigdesc").hover(function(){
$(this).fadeTo("slow", 0.65);
},function(){
$(this).fadeTo("fast", 0);
});
});

// Load PrettyPhoto lightbox Gallery.
$(document).ready(function(){
$("a[rel^='prettyPhoto']").prettyPhoto();
});