// JavaScript Document
jQuery(document).ready(function(){

//For the Partner Logos
jQuery("img.bw").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
});


//For the five RSS images
jQuery("img.rssbw1").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
jQuery("img.rsscolor1").show();
jQuery("img.rsscolor1").animate({"opacity": "1"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
jQuery("img.rsscolor1").animate({"opacity": "0"}, "slow");
});

jQuery("img.rssbw2").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
jQuery("img.rsscolor2").show();
jQuery("img.rsscolor2").animate({"opacity": "1"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
jQuery("img.rsscolor2").animate({"opacity": "0"}, "slow");
});

jQuery("img.rssbw3").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
jQuery("img.rsscolor3").show();
jQuery("img.rsscolor3").animate({"opacity": "1"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
jQuery("img.rsscolor3").animate({"opacity": "0"}, "slow");
});

jQuery("img.rssbw4").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
jQuery("img.rsscolor4").show();
jQuery("img.rsscolor4").animate({"opacity": "1"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
jQuery("img.rsscolor4").animate({"opacity": "0"}, "slow");
});

jQuery("img.rssbw5").hover(
function() {
jQuery(this).stop().animate({"opacity": "0"}, "slow");
jQuery("img.rsscolor5").show();
jQuery("img.rsscolor5").animate({"opacity": "1"}, "slow");
},
function() {
jQuery(this).stop().animate({"opacity": "1"}, "slow");
jQuery("img.rsscolor5").animate({"opacity": "0"}, "slow");
});

	



});