// functions for CLS pages



////////////////// clip hovers //////////////
$(document).ready(function() {
	
	// add the hover fades to the index image clip
	$(".clip, .clip2, .clip3").hover(function() {
		$(this).fadeTo("slow", 0.5);
	},function() {
		$(this).fadeTo("slow", 1);		
	});
		
});
	



///////////// Prose divs ////////////////
// sets up class changes for IE on prose-based navigation elements

$(document).ready(function(){
      
	$(".prosediv").hover(
		function() { 
			$(this).addClass("prosedivover"); 
			$(this).removeClass("prosediv"); 
		},
		function() { 
			$(this).addClass("prosediv"); 
			$(this).removeClass("prosedivover"); 
		}
	);
   
});    


/////////// Glossary Terms //////////////////
// sets up glossary explanation mouseovers

$(document).ready(function(){
	
	$(".glossdef").fadeOut("fast");

	$(".glossterm").hover(
		function() {
			$(this).find(".glossdef").fadeIn("slow");
		},
		function() {
			$(this).find(".glossdef").fadeOut("slow");		
		}
	);

});



