// JavaScript Document
$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

// logo fading
$(function() {
	$('#nav').find('h3.logo').hover( function() {
		$(this).stop().animate({opacity: .55 }, 250);
	}, function() {
		$(this).stop().animate({opacity: 1.0}, 250);
	});
});
