
//gallery fade

$(document).ready(function(){
$(".trans").fadeTo("slow", 4.5);
$(".trans").hover(function(){
$(this).fadeTo("slow", 0.5);
},function(){
$(this).fadeTo("slow", 4.5);
});
});

//menu fade

$(document).ready(function(){
$("#head-holder").fadeTo("slow", 0.8);
$("#head-holder").hover(function(){
$(this).fadeTo("slow", 1);
},function(){
$(this).fadeTo("slow", 0.8);
});
});

//background

$(document).ready(function(){
$("#background").fadeTo("slow", 0.5);
$("#background").hover(function(){
$(this).fadeTo("slow", 2);
},function(){
$(this).fadeTo("slow", 0.5);
});
});

//background - gallery

$(document).ready(function(){
$("#background2").fadeTo("slow", 0.1);
$("#background2").hover(function(){
$(this).fadeTo("slow", 4.5);
},function(){
$(this).fadeTo("slow", 0.1);
});
});

//social - icons

$(document).ready(function(){
$(".icon").fadeTo("slow", 0.7);
$(".icon").hover(function(){
$(this).fadeTo("slow", 1.9);
},function(){
$(this).fadeTo("slow", 0.7);
});
});