<!--Code by Jacob E. Lee © 2009-->
$(window).bind('load', function (hov){
$('div.case-study-list > a > img').hover(function() {
var hover = $('div.case-study-list > a > img').not(this);
hover.stop().animate({opacity: 0}, 250); 
}, function() {
$('div.case-study-list > a >img');
var notHovered = $('div.case-study-list> a > img');
notHovered.stop().animate({opacity: 1}, 250);
});
});


$(window).bind('load', function (hov){
$('#headerbg >').hover(function() {
var hover = $('#headerbg >').not(this);
hover.stop().animate({opacity: 0}, 800); 
}, function() {
$('#headerbg >');
var notHovered = $('#headerbg >');
notHovered.stop().animate({opacity: 1}, 800);
});
});