$(document).ready(function(){
		$(".featframe").fadeTo("slow", 0.8); // This sets the opacity of the adspot to fade down to 60% when the page loads
		$(".featframe").hover(function(){
		$(this).fadeTo("slow", 1.0);
		$(this).animate({backgroundColor:'#ffffff'}, {queue:false,duration:500});
		
		 // This should set the opacity to 100% on hover
		},function(){
		$(this).fadeTo("slow", 0.8); // This should set the opacity back to 60% on mouseout
		$(this).animate({backgroundColor:'#e6f3f8'}, {queue:false,duration:500});
		});
		
		
		$(".adspot img").fadeTo("slow", 0.6); // This sets the opacity of the adspot to fade down to 60% when the page loads
		$(".adspot img").hover(function(){
		$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
		},function(){
		$(this).fadeTo("slow", 0.6); // This should set the opacity back to 60% on mouseout
		});
		
		$('.sponsersmid1 li').hover(
		function () {
		$(this).animate({backgroundColor:'#ecf5fd', color:'#141414'}, {queue:false,duration:500});
		}, function () {
		$(this).animate({backgroundColor:'#f5f9fe', color:'#444444'}, {queue:false,duration:500});
		});
		
		
		$('.logo a').hover(
		function () {
		$(this).animate({color:'#a0ae30'}, {queue:false,duration:500});
		}, function () {
		$(this).animate({color:'#2b77bf'}, {queue:false,duration:500});
		});
		
		
		$('.toppages a').hover(
		function () {
		$(this).animate({backgroundColor:'#fafafa',color:'#0f457e'}, {queue:false,duration:500});
		}, function () {
		$(this).animate({backgroundColor:'#ffffff',color:'#000000'}, {queue:false,duration:500});
		});
		
		$('.editorframe2').hover(
		function () {
		$(this).animate({backgroundColor:'#f6fcff'}, {queue:false,duration:500});
		}, function () {
		$(this).animate({backgroundColor:'#ffffff'}, {queue:false,duration:500});
		});
		
	
	});
	
