jQuery(function(){
// Swap Pod Images in link rollover

jQuery("div.first").hover(function () {
		jQuery("div.fourth .inner").stop().fadeIn("slow");
		jQuery("div.first a").css("color", "#000");
	},
	// on mouse out
	function () {
		jQuery("div.fourth .inner").fadeOut("slow");
		jQuery("div.first a").css("color", "#FFF");
});
				
jQuery("div.third").hover(function () {
		jQuery("div.sixth .inner").stop().fadeIn("slow");
		jQuery("div.third a").css("color", "#000");
	},
	// on mouse out
	function () {
		jQuery("div.sixth .inner").fadeOut("slow");
		jQuery("div.third a").css("color", "#FFF");
});
				
jQuery("div.fifth").hover(function () {
		jQuery("div.second .inner").stop().fadeIn("slow");
		jQuery("div.fifth a").css("color", "#000");
	},
	// on mouse out
	function () {
		jQuery("div.second .inner").fadeOut("slow");
		jQuery("div.fifth a").css("color", "#FFF");
});
});