
$(document).ready(function(){
     $('div.tabsFeaturedImage img').hover(function(){
    grayscale(this);
   }, function(){
    grayscale.reset(this);
   })
  });
  



$(document).ready(function(){
						   $('.slide').hover(function(){
						   $(".slideTexts", this).stop().animate({top:'270px'},{queue:false,duration:200});
						   }, function() {
						   $(".slideTexts", this).stop().animate({top:'310px'},{queue:false,duration:200});
						   		});
						   });


$(document).ready(function(){
						   $("ul#logonav li").fadeTo("normal", 0.5); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("ul#logonav li").hover(function(){
						   $(this).fadeTo("fast", 1.0);
						   },function(){
						   $(this).fadeTo("fast", 0.5);
							   	});
						   });

$(document).ready(function(){
						   $("div#header h1 a").fadeTo("normal", 1.0); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("div#header h1 a").hover(function(){
						   $(this).fadeTo("fast", 0.6); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity back to 30% on mouseout
							   	});
						   });


$(document).ready(function(){
						   $("#searchWrapper").fadeTo("fast", 0.9); // This sets the opacity of the thumbs to fade down to 30% when the page loads
						   $("#searchWrapper").hover(function(){
						   $(this).fadeTo("fast", 1.0); // This should set the opacity to 100% on hover
						   },function(){
						   $(this).fadeTo("fast", 0.9); // This should set the opacity back to 30% on mouseout
							   	});
						   });
$(document).ready(function(){
						   $('div.blogArchive').hover(function(){
						   $("div.blogArchiveText", this).stop().animate({top:'-50px'},{queue:false,duration:200});
						   }, function() {
						   $("div.blogArchiveText", this).stop().animate({top:'-35px'},{queue:false,duration:200});
						   		});
						   });
$(document).ready(function(){
						$("blockquote").append("<div class='quote_bottom'></div>");
						});
